結果
問題 | No.2328 Build Walls |
ユーザー | pockyny |
提出日時 | 2023-05-28 14:47:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 706 ms / 3,000 ms |
コード長 | 1,911 bytes |
コンパイル時間 | 976 ms |
コンパイル使用メモリ | 81,524 KB |
実行使用メモリ | 194,432 KB |
最終ジャッジ日時 | 2024-06-08 06:12:00 |
合計ジャッジ時間 | 10,542 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
97,280 KB |
testcase_01 | AC | 76 ms
97,280 KB |
testcase_02 | AC | 75 ms
97,280 KB |
testcase_03 | AC | 75 ms
97,280 KB |
testcase_04 | AC | 76 ms
97,280 KB |
testcase_05 | AC | 75 ms
97,280 KB |
testcase_06 | AC | 75 ms
97,408 KB |
testcase_07 | AC | 74 ms
97,408 KB |
testcase_08 | AC | 74 ms
97,280 KB |
testcase_09 | AC | 74 ms
97,280 KB |
testcase_10 | AC | 74 ms
97,152 KB |
testcase_11 | AC | 74 ms
97,408 KB |
testcase_12 | AC | 76 ms
97,280 KB |
testcase_13 | AC | 166 ms
111,360 KB |
testcase_14 | AC | 226 ms
121,472 KB |
testcase_15 | AC | 175 ms
112,640 KB |
testcase_16 | AC | 90 ms
99,456 KB |
testcase_17 | AC | 168 ms
109,440 KB |
testcase_18 | AC | 77 ms
97,792 KB |
testcase_19 | AC | 87 ms
98,816 KB |
testcase_20 | AC | 82 ms
98,560 KB |
testcase_21 | AC | 131 ms
103,040 KB |
testcase_22 | AC | 322 ms
134,528 KB |
testcase_23 | AC | 487 ms
150,656 KB |
testcase_24 | AC | 447 ms
144,000 KB |
testcase_25 | AC | 476 ms
149,760 KB |
testcase_26 | AC | 369 ms
130,816 KB |
testcase_27 | AC | 426 ms
140,160 KB |
testcase_28 | AC | 184 ms
105,472 KB |
testcase_29 | AC | 485 ms
150,912 KB |
testcase_30 | AC | 243 ms
121,856 KB |
testcase_31 | AC | 230 ms
117,120 KB |
testcase_32 | AC | 439 ms
139,008 KB |
testcase_33 | AC | 706 ms
194,432 KB |
testcase_34 | AC | 255 ms
123,648 KB |
testcase_35 | AC | 584 ms
172,160 KB |
testcase_36 | AC | 77 ms
97,280 KB |
ソースコード
#include <iostream> #include <vector> #include <queue> using namespace std; typedef long long ll; typedef pair<ll,int> pll; vector<pll> G[4000100]; //weight,vertex priority_queue<pll,vector<pll>,greater<pll>> que; ll d[4000100],INF = 100000000000000000; void add_edge(int from,int to,ll weight){ G[from].push_back({weight,to}); // if(to==13) cout << from << " " << to << " " << weight << endl; } void dijkstra(int s){ que.push({0,s}); while(que.size()){ pll p = que.top(); que.pop(); ll dis = p.first,pos = p.second; if(d[pos]!=INF) continue; d[pos] = dis; for(auto e:G[pos]){ if(d[e.second]==INF) que.push({dis + e.first,e.second}); } } } int a[1010][1010]; int dx[8] = {1,1,0,-1,-1,-1,0,1}; int dy[8] = {0,1,1,1,0,-1,-1,-1}; bool ch(int h,int w,int nx,int ny){ if(nx<0 || nx>=h || ny<0 || ny>=w || a[nx][ny]==-1) return false; return true; } int mp(int w,int nx,int ny){ return w*nx + ny; } int main(){ int i,j,k,h,w; cin >> h >> w; for(i=0;i<h - 2;i++){ for(j=0;j<w;j++){ cin >> a[i][j]; } } for(i=0;i<h - 2;i++){ for(j=0;j<w;j++){ if(a[i][j]==-1) continue; for(k=0;k<8;k++){ int nx = i + dx[k],ny = j + dy[k]; if(!ch(h - 2,w,nx,ny)) continue; add_edge(mp(w,i,j),mp(w,nx,ny),a[i][j]); } } } int s = (h - 2)*w; int t = (h - 2)*w + 1; for(i=0;i<=t;i++) d[i] = INF; for(i=0;i<h - 2;i++){ if(a[i][0]!=-1) add_edge(s,mp(w,i,0),0); if(a[i][w - 1]!=-1) add_edge(mp(w,i,w - 1),t,a[i][w - 1]); } dijkstra(s); if(d[t]!=INF) cout << d[t] << "\n"; else cout << -1 << "\n"; // for(i=0;i<(h - 2)*w;i++){ // cout << d[i] << " "; // if(i%w==w - 1) cout << "\n"; // } // cout << d[s] << " " << d[t] << endl; }