結果
問題 | No.340 雪の足跡 |
ユーザー | fiord |
提出日時 | 2016-01-31 10:29:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,640 bytes |
コンパイル時間 | 1,718 ms |
コンパイル使用メモリ | 173,784 KB |
実行使用メモリ | 32,640 KB |
最終ジャッジ日時 | 2024-09-21 19:37:33 |
合計ジャッジ時間 | 6,037 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 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 | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 28 ms
6,400 KB |
testcase_15 | AC | 34 ms
7,040 KB |
testcase_16 | AC | 24 ms
5,504 KB |
testcase_17 | AC | 43 ms
7,040 KB |
testcase_18 | AC | 36 ms
7,040 KB |
testcase_19 | AC | 42 ms
6,912 KB |
testcase_20 | AC | 336 ms
27,392 KB |
testcase_21 | AC | 206 ms
5,376 KB |
testcase_22 | AC | 12 ms
27,512 KB |
testcase_23 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define fst first #define sec second ll dist[1024][1024]; ll lr[1024][1024],ud[1024][1024]; int main(){ ll w,h,n; cin>>w>>h>>n; for(ll i=0;i<n;i++){ ll m; cin>>m; vector<pair<ll,ll>> b; for(ll j=0;j<m+1;j++){ ll num; cin>>num; b.push_back(make_pair(num/w,num%w));//y,x } for(ll j=1;j<=m;j++){ if(b[j].fst==b[j-1].fst){//横方向の移動 ll sml=min(b[j].sec,b[j-1].sec); ll big=max(b[j].sec,b[j-1].sec); lr[b[j].fst][sml]++; lr[b[j].fst][big]--; } else{ ll sml=min(b[j].fst,b[j-1].fst); ll big=max(b[j].fst,b[j-1].fst); ud[sml][b[j].sec]++; ud[big][b[j].sec]--; } } } for(ll i=0;i<h;i++){ for(ll j=1;j<w;j++) lr[i][j]+=lr[i][j-1]; } for(ll i=1;i<h;i++){ for(ll j=0;j<w;j++) ud[i][j]+=ud[i-1][j]; } for(ll i=0;i<h;i++) for(ll j=0;j<w;j++) dist[i][j]=LLONG_MAX; dist[0][0]=0; priority_queue<tuple<ll,ll,ll>> pq; pq.push(make_tuple(-0,0,0)); while(!pq.empty()){ auto it=pq.top(); pq.pop(); ll cost=-get<0>(it); ll y=get<1>(it),x=get<2>(it); if(cost>dist[y][x]) continue; if(y==h-1&&x==w-1){ cout<<cost<<endl; return 0; } cost++; if(lr[y][x]&&dist[y][x+1]>cost){ dist[y][x+1]=cost; pq.push(make_tuple(-cost,y,x+1)); } if(x>0&&lr[y][x-1]&&dist[y][x-1]>cost){ dist[y][x+1]=cost; pq.push(make_tuple(-cost,y,x-1)); } if(ud[y][x]&&dist[y+1][x]>cost){ dist[y+1][x]=cost; pq.push(make_tuple(-cost,y+1,x)); } if(y>0&&ud[y-1][x]&&dist[y-1][x]>cost){ dist[y-1][x]=cost; pq.push(make_tuple(-cost,y-1,x)); } } cout<<"Odekakedekinai.."<<endl; return 0; }