# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
57257 | 2018-07-14T12:09:12 Z | dennisstar | 여왕벌 (KOI15_queen) | C++11 | 5000 ms | 71936 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++) { lp=l, rp=r; if (x+y+j==M) r++; if (x+j==M) l++; if (l==r) { if (r) for (; r<M; r++) if (c[j][r][0][r-1<rp?r-1<lp?0:1:2][2]==2) break; sum[j][r]+=2; l=r; } else { if (l) for (; l<M; l++) if (c[j][l][0][(l-1<rp?l-1<lp?0:1:2)][(l<rp?l<lp?0:1:2)]==1) break; r=std::max(l,r); if (r) for (; r<M; r++) if (c[j][r][(r-1<l?0:1)][(r-1<rp?r-1<lp?0:1:2)][2]==2) break; 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 | 3 ms | 632 KB | Output is correct |
2 | Incorrect | 3 ms | 632 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 716 KB | Output is correct |
2 | Correct | 288 ms | 8052 KB | Output is correct |
3 | Correct | 406 ms | 15432 KB | Output is correct |
4 | Correct | 1214 ms | 38760 KB | Output is correct |
5 | Correct | 1319 ms | 52248 KB | Output is correct |
6 | Correct | 1426 ms | 65692 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 8 ms | 65692 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5066 ms | 69864 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 69864 KB | Output is correct |
2 | Correct | 3 ms | 69864 KB | Output is correct |
3 | Correct | 2 ms | 69864 KB | Output is correct |
4 | Correct | 3 ms | 69864 KB | Output is correct |
5 | Correct | 268 ms | 69864 KB | Output is correct |
6 | Incorrect | 335 ms | 71936 KB | Output isn't correct |
7 | Halted | 0 ms | 0 KB | - |