結果
問題 | No.1121 Social Distancing in Cinema |
ユーザー | butsurizuki |
提出日時 | 2020-07-24 04:11:04 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,685 bytes |
コンパイル時間 | 363 ms |
コンパイル使用メモリ | 31,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 05:57:28 |
合計ジャッジ時間 | 9,368 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 22 ms
5,376 KB |
testcase_21 | AC | 18 ms
5,376 KB |
testcase_22 | AC | 18 ms
5,376 KB |
testcase_23 | AC | 7 ms
5,376 KB |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | AC | 149 ms
5,376 KB |
testcase_26 | AC | 216 ms
5,376 KB |
testcase_27 | AC | 8 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 200 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 86 ms
5,376 KB |
testcase_41 | AC | 24 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 2 ms
5,376 KB |
ソースコード
#include<stdio.h> #include<stdbool.h> int q[1048576]; int qp=0,qqp=0; void qpush(int x){ qp++;q[qp]=x; } int qpop(){ qqp++; return q[qqp]; } int dsc[512][512]={0}; int sid[512][512]; int res[524288],rc=0; bool isvalid(int a,int b){ if(a<0||a>500){return false;} if(b<0||b>500){return false;} return true; } void rem(int a,int b){ if(sid[a][b]==-1){return;} sid[a][b]=-1; int i,j,x,y; for(i=-10;i<=10;i++){ for(j=-10;j<=10;j++){ if((i*i+j*j)>=100){continue;} x=a+i;y=b+j; if(isvalid(x,y)){ if(sid[x][y]!=-1){ dsc[x][y]--; if(dsc[x][y]<=85){ dsc[x][y]=1000000007; qpush(x*512+y); } } } } } } void sit(int a,int b){ if(sid[a][b]==-1){return;} res[rc]=sid[a][b]; sid[a][b]=-1; rc++; int i,j,x,y; for(i=-10;i<=10;i++){ for(j=-10;j<=10;j++){ if((i*i+j*j)>=100){continue;} x=a+i;y=b+j; if(isvalid(x,y)){rem(x,y);} } } } int main(){ int i,j,k,n,a,b,x,y; for(i=0;i<512;i++){ for(j=0;j<512;j++){sid[i][j]=-1;} } scanf("%d",&n); for(i=1;i<=n;i++){ scanf("%d%d",&a,&b); sid[a][b]=i; for(j=-10;j<=10;j++){ for(k=-10;k<=10;k++){ if((j*j+k*k)>=100){continue;} x=a+j;y=b+k; if(isvalid(x,y)){dsc[x][y]++;} } } dsc[a][b]--; } for(i=0;i<512;i++){ for(j=0;j<512;j++){ if(sid[i][j]!=-1 && dsc[i][j]<=85){ dsc[i][j]=1000000007; qpush(i*512+j); } } } while(qp!=qqp){ x=qpop(); sit(x/512,x%512); } printf("%d\n",rc); for(i=0;i<rc;i++){ if(i){printf(" ");} printf("%d",res[i]); }printf("\n"); }