# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
57340 | 2018-07-14T15:10:11 Z | dennisstar | 여왕벌 (KOI15_queen) | C++11 | 5000 ms | 18568 KB |
#include <bits/stdc++.h> int M, N; char c[710][710][3][3][3]; int sum[710][710]; int main() { int i, j, k; scanf("%d %d", &M, &N); for (i=1; i<M; i++) for (j=1; j<M; j++) for (k=0; k<27; k++) scanf(" %c", &c[i][j][k/9][(k%9)/3][k%3]); int x, y, z; for (i=1; i<M; i++) for (j=1; j<M; j++) for (x=0; x<3; x++) for (y=0; y<3; y++) for (z=0; z<3; z++) { if (c[i][j][x][y][z]=='L') c[i][j][x][y][z]=x; else if (c[i][j][x][y][z]=='D') c[i][j][x][y][z]=y; else c[i][j][x][y][z]=z; } int l, r, lp, rp; for (i=0; i<N; i++) { scanf("%d %d %d", &x, &y, &z); l=(x<M?0:(x-M+1)); r=((x+y)<M?0:(x+y-M+1)); sum[0][l]++, sum[0][r]++; for (j=1; j<M; j++) { if (x+j==M)l++; if (x+y+j==M)r++; if (l&&l!=r&&l<M) { if(c[j][l][0][x+j==M?1:0][1]==0) { l++; while(c[j][l][0][1][1]==0&&l<r) l++; } } if (r&&r<M) { if (l==r&&c[j][l][0][1][2]==1){ r++; while(c[j][r][1][2][2]==1&&r<M) r++; } else if (l==r) { if (c[j][r][0][1][2]==0) { r++; while(c[j][r][0][2][2]==0&&r<M) r++; l=r; } } else { if (c[j][r][1][1][2]==1) { r++; while(c[j][r][1][2][2]==1&&r<M) r++; } } } sum[j][l]++, sum[j][r]++; } } for (i=0; i<M; i++) { for (j=1; j<M; j++) { sum[i][j]+=sum[i][j-1]; } } for (i=0; i<M; i++) { for (j=0; j<M; j++) { printf("%d ", sum[i][j]+1); } puts(""); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 484 KB | Output is correct |
3 | Correct | 23 ms | 1456 KB | Output is correct |
4 | Correct | 28 ms | 1456 KB | Output is correct |
5 | Incorrect | 226 ms | 5180 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 5180 KB | Output is correct |
2 | Correct | 241 ms | 5492 KB | Output is correct |
3 | Correct | 396 ms | 8692 KB | Output is correct |
4 | Correct | 1215 ms | 18568 KB | Output is correct |
5 | Correct | 1214 ms | 18568 KB | Output is correct |
6 | Correct | 1144 ms | 18568 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 18568 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5057 ms | 18568 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 18568 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |