(BOJ) 1600 풀이
1600 #include using namespace std; typedef struct _XYZ{ int x; int y; int z; }xyz; int dx[]={-1,0,1,0,-1,-2,-2,-1,1,2, 2, 1}; int dy[]={0,1,0,-1,-2,-1, 1, 2,2,1,-1,-2}; int board[202][202]; int visited[202][202][32]; int main(void){ ios::sync_with_stdio(0);cin.tie(0); int K,W,H,flag=0; xyz v; queue Q; cin >> K; cin >> W >> H; for(int i=1;i board[i][j]; } } Q.push({1,1,K}); while(!Q.empty()){ v=Q..
2022. 2. 14.