14500 테트로미노
테트로미노 (14500) 풀이코드 #include #include #include #include #include #include #include using namespace std; // 14500 테트로미노 const int MAX = 1000000; // 19가지 테트로미노. 기준점을 제외한 나머지 3칸의 x,y 좌표를 가진 block 배열 int block[19][3][2] = { {{0,1}, {0,2}, {0,3}}, {{1,0}, {2,0}, {3,0}}, {{1,0}, {1,1}, {1,2}}, {{0,1}, {1,0}, {2,0}}, {{0,1}, {0,2}, {1,2}}, {{1,0}, {2,0}, {2,-1}}, {{0,1}, {0,2}, {-1,2}}, {{1,0}, {2,0}, {..