結果
問題 | No.340 雪の足跡 |
ユーザー | 184 |
提出日時 | 2016-01-30 09:54:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,162 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 67,888 KB |
実行使用メモリ | 30,100 KB |
最終ジャッジ日時 | 2024-09-21 19:04:11 |
合計ジャッジ時間 | 8,673 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 14 ms
30,092 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | int w,h,n;scanf("%d%d%d",&w,&h,&n); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:15:44: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | int m,sx,sy,x,y,a,b,d;scanf("%d%d",&m,&a); | ~~~~~^~~~~~~~~~~~~~ main.cpp:18:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d",&b);x=b%w;y=b/w; | ~~~~~^~~~~~~~~
ソースコード
#include <cstdio> #include <queue> #include <map> #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); vector<int> visit(w*h); vector< map<int,int> > mp; 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){ if(mp[a][a+d])continue; mp[a][a+d]=mp[a+d][a]=1; 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){ if(mp[a][a+d])continue; mp[a][a+d]=mp[a+d][a]=1; 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;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; }