結果
問題 | No.340 雪の足跡 |
ユーザー | 184 |
提出日時 | 2016-01-30 09:21:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,001 bytes |
コンパイル時間 | 1,515 ms |
コンパイル使用メモリ | 51,424 KB |
実行使用メモリ | 813,928 KB |
最終ジャッジ日時 | 2024-09-21 19:04:00 |
合計ジャッジ時間 | 8,122 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 5 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 6 ms
6,944 KB |
testcase_14 | AC | 297 ms
55,424 KB |
testcase_15 | AC | 396 ms
76,800 KB |
testcase_16 | AC | 155 ms
42,496 KB |
testcase_17 | AC | 646 ms
104,832 KB |
testcase_18 | AC | 491 ms
83,456 KB |
testcase_19 | AC | 640 ms
104,576 KB |
testcase_20 | MLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | int w,h,n;scanf("%d%d%d",&w,&h,&n); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:12:44: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | int m,sx,sy,x,y,a,b,d;scanf("%d%d",&m,&a); | ~~~~~^~~~~~~~~~~~~~ main.cpp:15:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d",&b);x=b%w;y=b/w; | ~~~~~^~~~~~~~~
ソースコード
#include <cstdio> #include <queue> #include <vector> #include <algorithm> using namespace std; int main(){ int w,h,n;scanf("%d%d%d",&w,&h,&n); vector< vector<int> > v(h*w); for(int i=0;i<n;i++){ int m,sx,sy,x,y,a,b,d;scanf("%d%d",&m,&a); sx=a%w;sy=a/w; for(int j=0;j<m;j++){ scanf("%d",&b);x=b%w;y=b/w; if(sx==x){ if(sy<y)d=w;else d=-w; for(;a!=b;a+=d){ v[a].push_back(a+d); v[a+d].push_back(a); } } else if(sy==y){ if(sx<x)d=1;else d=-1; for(;a!=b;a+=d){ v[a].push_back(a+d); v[a+d].push_back(a); } } a=b;sx=x;sy=y; } } queue<int> q; q.push(0); int g=h*w-1; vector<int> visit(w*h);visit[0]=1; int a,cnt=0,num=1,ncnt=0; while(q.size()){ a=q.front();q.pop(); if(a==g){a=-1;break;} num--; for(int i=0;i<v[a].size();i++){ if(visit[v[a][i]]==0){ncnt++;visit[v[a][i]]=1;q.push(v[a][i]);} } if(num==0){cnt++;num=ncnt;ncnt=0;} } if(a>=0)printf("Odekakedekinai..\n"); else printf("%d\n",cnt); return 0; }