# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
371156 | 2021-02-26T02:07:16 Z | daniel920712 | Red-blue table (IZhO19_stones) | C++14 | 65 ms | 1880 KB |
#include <iostream> #include <stdio.h> #include <stdlib.h> using namespace std; int all[1005][1005]; int con[1005]; int main() { int T,N,M,ans=0,i,j,k,ok=1; scanf("%d",&T); while(T--) { ans=0,ok=0; scanf("%d %d",&N,&M); if(N>M) { ok=1; swap(N,M); } if(N<=M) { ans=M; for(i=0;i<=N/2;i++) { con[i]=0; for(j=0;j<M;j++) all[i][j]=0; } for(i=N/2+1;i<N;i++) { con[i]=M; for(j=0;j<M;j++) all[i][j]=1; } for(i=0;i<=N/2;i++) { for(j=0;j<M;j++) { if(con[i]<=(M-con[i])) { for(k=N/2+1;k<=N;k++) { if(all[k][j]==1) { if(con[k]-1>(M-con[k]+1)) { con[k]--; con[i]++; swap(all[i][j],all[k][j]); } } } } } } ans=M; for(i=0;i<N;i++) if(con[i]>(M-con[i])) ans++; } if(ok==0) { printf("%d\n",ans); for(i=0;i<N;i++) { for(j=0;j<M;j++) { if(all[i][j]==0) printf("-"); else printf("+"); } printf("\n"); } } else { printf("%d\n",ans); for(i=0;i<M;i++) { for(j=0;j<N;j++) { if(all[j][i]==1) printf("-"); else printf("+"); } printf("\n"); } } } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Incorrect | 1 ms | 364 KB | in the table A+B is not equal to 5 |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 384 KB | in the table A+B is not equal to 28 |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Incorrect | 1 ms | 364 KB | in the table A+B is not equal to 5 |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 63 ms | 1796 KB | in the table A+B is not equal to 116 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 65 ms | 1880 KB | in the table A+B is not equal to 42 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Incorrect | 1 ms | 364 KB | in the table A+B is not equal to 5 |