結果
問題 | No.1121 Social Distancing in Cinema |
ユーザー | kotatsugame |
提出日時 | 2020-07-22 21:46:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 59,852 KB |
実行使用メモリ | 8,012 KB |
最終ジャッジ日時 | 2024-06-22 15:19:04 |
合計ジャッジ時間 | 5,324 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,244 KB |
testcase_01 | AC | 5 ms
6,940 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 5 ms
6,944 KB |
testcase_04 | AC | 5 ms
6,944 KB |
testcase_05 | AC | 5 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,944 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 4 ms
6,948 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 5 ms
6,940 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,948 KB |
testcase_13 | AC | 5 ms
6,944 KB |
testcase_14 | AC | 5 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 6 ms
6,944 KB |
testcase_21 | AC | 5 ms
7,368 KB |
testcase_22 | AC | 6 ms
6,940 KB |
testcase_23 | AC | 5 ms
6,944 KB |
testcase_24 | AC | 5 ms
6,948 KB |
testcase_25 | AC | 15 ms
7,752 KB |
testcase_26 | AC | 19 ms
6,940 KB |
testcase_27 | AC | 7 ms
6,944 KB |
testcase_28 | AC | 38 ms
7,368 KB |
testcase_29 | AC | 19 ms
6,980 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 19 ms
6,940 KB |
testcase_34 | AC | 18 ms
6,944 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 14 ms
6,944 KB |
testcase_38 | AC | 19 ms
6,944 KB |
testcase_39 | AC | 37 ms
7,624 KB |
testcase_40 | AC | 12 ms
7,116 KB |
testcase_41 | AC | 7 ms
6,948 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 5 ms
6,944 KB |
testcase_48 | AC | 5 ms
6,944 KB |
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 10 | main() | ^~~~
ソースコード
#include<cstdio> #include<vector> #include<algorithm> #include<queue> using namespace std; int N; int X[3<<17],Y[3<<17]; bool ex[555][555],vis[555][555]; int id[555][555]; main() { scanf("%d",&N); for(int i=0;i<N;i++) { scanf("%d%d",&X[i],&Y[i]); id[X[i]][Y[i]]=i+1; } vector<int>ans; queue<pair<int,int> >Q; Q.push(make_pair(0,0)); vis[0][0]=true; while(!Q.empty()) { int x=Q.front().first,y=Q.front().second; Q.pop(); if(!ex[x][y]&&id[x][y]!=0) { ans.push_back(id[x][y]); for(int dx=-9;dx<=9;dx++)for(int dy=-9;dy<=9;dy++) { if(x+dx>=0&&y+dy>=0&&dx*dx+dy*dy<100) { ex[x+dx][y+dy]=true; } } } if(x<500&&!vis[x+1][y]) { vis[x+1][y]=true; Q.push(make_pair(x+1,y)); } if(y<500&&!vis[x][y+1]) { vis[x][y+1]=true; Q.push(make_pair(x,y+1)); } } printf("%d\n",(int)ans.size()); for(int i=0;i<ans.size();i++)printf("%d%c",ans[i],i+1==ans.size()?'\n':' '); }