結果
問題 | No.2328 Build Walls |
ユーザー | 👑 emthrm |
提出日時 | 2023-05-28 14:27:56 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 461 ms / 3,000 ms |
コード長 | 3,353 bytes |
コンパイル時間 | 2,903 ms |
コンパイル使用メモリ | 264,728 KB |
実行使用メモリ | 219,980 KB |
最終ジャッジ日時 | 2024-06-08 05:31:06 |
合計ジャッジ時間 | 8,877 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 88 ms
41,336 KB |
testcase_14 | AC | 115 ms
53,220 KB |
testcase_15 | AC | 81 ms
34,904 KB |
testcase_16 | AC | 15 ms
8,704 KB |
testcase_17 | AC | 79 ms
32,252 KB |
testcase_18 | AC | 4 ms
6,940 KB |
testcase_19 | AC | 9 ms
7,040 KB |
testcase_20 | AC | 7 ms
6,940 KB |
testcase_21 | AC | 36 ms
23,976 KB |
testcase_22 | AC | 178 ms
81,172 KB |
testcase_23 | AC | 365 ms
124,656 KB |
testcase_24 | AC | 335 ms
112,636 KB |
testcase_25 | AC | 350 ms
122,496 KB |
testcase_26 | AC | 266 ms
89,728 KB |
testcase_27 | AC | 315 ms
105,856 KB |
testcase_28 | AC | 62 ms
43,392 KB |
testcase_29 | AC | 351 ms
124,672 KB |
testcase_30 | AC | 165 ms
73,928 KB |
testcase_31 | AC | 145 ms
65,324 KB |
testcase_32 | AC | 320 ms
103,808 KB |
testcase_33 | AC | 461 ms
219,980 KB |
testcase_34 | AC | 174 ms
76,992 KB |
testcase_35 | AC | 416 ms
165,064 KB |
testcase_36 | AC | 1 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 998244353; // constexpr int MOD = 1000000007; constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1}; constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}; constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; template <typename CostType> struct Edge { CostType cost; int src, dst; explicit Edge(const int src, const int dst, const CostType cost = 0) : cost(cost), src(src), dst(dst) {} auto operator<=>(const Edge& x) const = default; }; template <typename CostType> struct Dijkstra { const CostType inf; Dijkstra(const std::vector<std::vector<Edge<CostType>>>& graph, const CostType inf = std::numeric_limits<CostType>::max()) : inf(inf), is_built(false), graph(graph) {} std::vector<CostType> build(const int s) { is_built = true; const int n = graph.size(); std::vector<CostType> dist(n, inf); dist[s] = 0; prev.assign(n, -1); std::priority_queue<std::pair<CostType, int>, std::vector<std::pair<CostType, int>>, std::greater<std::pair<CostType, int>>> que; que.emplace(0, s); while (!que.empty()) { const auto [d, ver] = que.top(); que.pop(); if (d > dist[ver]) continue; for (const Edge<CostType>& e : graph[ver]) { if (dist[ver] + e.cost < dist[e.dst]) { dist[e.dst] = dist[ver] + e.cost; prev[e.dst] = ver; que.emplace(dist[e.dst], e.dst); } } } return dist; } std::vector<int> build_path(int t) const { assert(is_built); std::vector<int> res; for (; t != -1; t = prev[t]) { res.emplace_back(t); } std::reverse(res.begin(), res.end()); return res; } private: bool is_built; std::vector<int> prev; std::vector<std::vector<Edge<CostType>>> graph; }; int main() { int h, w; cin >> h >> w; vector a(h - 2, vector(w, 0)); REP(i, h - 2) REP(j, w) cin >> a[i][j]; vector<vector<Edge<ll>>> graph((h - 2) * w + 2); const auto id = [&](const int y, const int x) -> int { return y * w + x; }; REP(i, h - 2) { if (a[i][0] != -1) graph[(h - 2) * w].emplace_back((h - 2) * w, id(i, 0), a[i][0]); } REP(i, h - 2) REP(j, w) { if (a[i][j] == -1) continue; REP(k, 8) { const int y = i + DY8[k], x = j + DX8[k]; if (0 <= y && y < h - 2 && 0 <= x && x < w && a[y][x] != -1) { graph[id(i, j)].emplace_back(id(i, j), id(y, x), a[y][x]); } } } REP(i, h - 2) { if (a[i][w - 1] != -1) graph[id(i, w - 1)].emplace_back(id(i, w - 1), (h - 2) * w + 1, 0); } const ll ans = Dijkstra(graph, LINF).build((h - 2) * w)[(h - 2) * w + 1]; cout << (ans == LINF ? -1 : ans) << '\n'; return 0; }