문제 원본 : https://www.acmicpc.net/problem/17136 17136번: 색종이 붙이기 과 같이 정사각형 모양을 한 다섯 종류의 색종이가 있다. 색종이의 크기는 1×1, 2×2, 3×3, 4×4, 5×5로 총 다섯 종류가 있으며, 각 종류의 색종이는 5개씩 가지고 있다. 색종이를 크 www.acmicpc.net #include #include #include using namespace std; int map[10][10]; vector v; int blk_cnt[5] = { 5,5,5,5,5 }; int cnt; int ans; bool succ; bool possible(int r, int c, int n) { if (r + n > 10 || c + n > 10) return ..