結果
問題 | No.2328 Build Walls |
ユーザー | KKT89 |
提出日時 | 2023-05-28 14:02:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 386 ms / 3,000 ms |
コード長 | 2,322 bytes |
コンパイル時間 | 3,099 ms |
コンパイル使用メモリ | 227,552 KB |
実行使用メモリ | 122,184 KB |
最終ジャッジ日時 | 2024-06-08 04:33:17 |
合計ジャッジ時間 | 7,846 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 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 | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 72 ms
28,252 KB |
testcase_14 | AC | 95 ms
31,872 KB |
testcase_15 | AC | 72 ms
22,944 KB |
testcase_16 | AC | 13 ms
6,656 KB |
testcase_17 | AC | 73 ms
21,888 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 9 ms
5,888 KB |
testcase_20 | AC | 8 ms
5,376 KB |
testcase_21 | AC | 34 ms
18,560 KB |
testcase_22 | AC | 147 ms
46,976 KB |
testcase_23 | AC | 296 ms
78,588 KB |
testcase_24 | AC | 281 ms
71,672 KB |
testcase_25 | AC | 294 ms
77,312 KB |
testcase_26 | AC | 225 ms
58,752 KB |
testcase_27 | AC | 264 ms
67,756 KB |
testcase_28 | AC | 59 ms
33,300 KB |
testcase_29 | AC | 293 ms
78,624 KB |
testcase_30 | AC | 131 ms
49,748 KB |
testcase_31 | AC | 112 ms
45,000 KB |
testcase_32 | AC | 263 ms
66,688 KB |
testcase_33 | AC | 386 ms
122,184 KB |
testcase_34 | AC | 138 ms
51,544 KB |
testcase_35 | AC | 342 ms
99,888 KB |
testcase_36 | AC | 2 ms
5,376 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long int ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } inline double time() { return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9; } template<typename T> struct Dijkstra{ const T inf=numeric_limits<T>::max(); using P=pair<T,int>; int n; vector<vector<pair<int,T>>> g; vector<T> d; Dijkstra(int n):n(n),g(n),d(n){} void add_edge(int u,int v,T w){ g[u].emplace_back(v,w); } vector<T> build(int s){ for(int i=0;i<n;i++){ d[i]=inf; } d[s]=0; priority_queue<P,vector<P>,greater<P>> pq; pq.emplace(d[s],s); while(pq.size()){ P p=pq.top(); pq.pop(); int v=p.second; if(d[v]<p.first)continue; for(auto &e:g[v]){ int u=e.first; T c=e.second; if(d[u]>d[v]+c){ d[u]=d[v]+c; pq.emplace(d[u],u); } } } return d; } }; int dx[] = {1,-1,0,0,1,1,-1,-1}; int dy[] = {0,0,1,-1,1,-1,1,-1}; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int h,w; cin >> h >> w; vector<vector<ll>> a(h-2,vector<ll>(w)); for (int i = 0; i < h - 2; ++i) { for (int j = 0; j < w; ++j) { cin >> a[i][j]; } } h -= 2; Dijkstra<ll> g(h*w+2); int S = h*w, T = h*w+1; for (int i = 0; i < h; ++i) { if (a[i][0] != -1) g.add_edge(S, i*w+0, a[i][0]); if (a[i][w-1] != -1) g.add_edge(i*w+w-1, T, 0); } for (int i = 0; i < h; ++i) { for (int j = 0; j < w; ++j) { if (a[i][j] == -1) continue; for (int k = 0; k < 8; ++k) { int nx = i+dx[k], ny = j+dy[k]; if (0 <= nx and nx < h and 0 <= ny and ny < w and a[nx][ny] != -1) { g.add_edge(i*w+j, nx*w+ny, a[nx][ny]); } } } } ll res = g.build(S)[T]; if (res == numeric_limits<ll>::max()) res = -1; cout << res << endl; }