[algospot] 게임판 덮기 BOARDCOVER
게임판 덮기 (ID : BOARDCOVER) 내 풀이 코드 #include #include #include using namespace std; int currentHeight, currentWidth; // ㄱ 자 모양을 4가지 방향으로 덮을 수 있다. 방향 당 3칸을 차지하며, 각 칸의 좌표를 기록해둔 것이다. const int coverType[4][3][2] = { { {0, 0}, {1, 0}, {0, 1}}, { {0, 0}, {0, 1}, {1, 1}}, { {0, 0}, {1, 0}, {1, 1}}, { {0, 0}, {1, 0}, {1, -1}} }; bool set(vector &board, int x, int y, int type, int delta){ // (보드 , x, y, 칸 ..