[BOJ]16968번: 차량 번호판 1 (c++)
https://www.acmicpc.net/problem/16968 16968번: 차량 번호판 1 00부터 99까지 총 100가지 중에서 00, 11, 22, 33, 44, 55, 66, 77, 88, 99가 불가능하다. www.acmicpc.net 방법 1: 그리디 #include using namespace std; int get_next(char bfr, char now) { int next = 0; if (now == 'c') { next = 26; } else { next = 10; } // 앞 문자와 중복되는 경우 제외 if (bfr == now) { --next; } return next; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); ..
2020. 7. 17.