結果
問題 | No.2855 Move on Grid |
ユーザー | SnowBeenDiding |
提出日時 | 2024-08-25 14:04:03 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 814 ms / 3,000 ms |
コード長 | 2,921 bytes |
コンパイル時間 | 3,255 ms |
コンパイル使用メモリ | 266,620 KB |
実行使用メモリ | 11,496 KB |
最終ジャッジ日時 | 2024-08-25 14:04:45 |
合計ジャッジ時間 | 28,841 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 164 ms
6,812 KB |
testcase_01 | AC | 236 ms
6,816 KB |
testcase_02 | AC | 149 ms
6,944 KB |
testcase_03 | AC | 101 ms
6,940 KB |
testcase_04 | AC | 68 ms
6,944 KB |
testcase_05 | AC | 153 ms
6,940 KB |
testcase_06 | AC | 164 ms
6,940 KB |
testcase_07 | AC | 16 ms
6,940 KB |
testcase_08 | AC | 129 ms
6,940 KB |
testcase_09 | AC | 59 ms
6,948 KB |
testcase_10 | AC | 639 ms
11,240 KB |
testcase_11 | AC | 675 ms
11,116 KB |
testcase_12 | AC | 637 ms
11,164 KB |
testcase_13 | AC | 673 ms
11,240 KB |
testcase_14 | AC | 622 ms
11,116 KB |
testcase_15 | AC | 680 ms
11,348 KB |
testcase_16 | AC | 688 ms
11,236 KB |
testcase_17 | AC | 681 ms
11,240 KB |
testcase_18 | AC | 665 ms
11,240 KB |
testcase_19 | AC | 679 ms
11,240 KB |
testcase_20 | AC | 769 ms
11,244 KB |
testcase_21 | AC | 756 ms
11,372 KB |
testcase_22 | AC | 755 ms
11,240 KB |
testcase_23 | AC | 741 ms
11,104 KB |
testcase_24 | AC | 763 ms
11,112 KB |
testcase_25 | AC | 813 ms
11,240 KB |
testcase_26 | AC | 733 ms
11,240 KB |
testcase_27 | AC | 750 ms
11,492 KB |
testcase_28 | AC | 732 ms
11,240 KB |
testcase_29 | AC | 760 ms
11,240 KB |
testcase_30 | AC | 783 ms
11,372 KB |
testcase_31 | AC | 783 ms
11,368 KB |
testcase_32 | AC | 814 ms
11,368 KB |
testcase_33 | AC | 811 ms
11,496 KB |
testcase_34 | AC | 773 ms
11,496 KB |
testcase_35 | AC | 765 ms
11,496 KB |
testcase_36 | AC | 732 ms
11,236 KB |
testcase_37 | AC | 768 ms
11,368 KB |
testcase_38 | AC | 808 ms
11,244 KB |
testcase_39 | AC | 799 ms
11,364 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace std; typedef long long ll; template <typename T> struct Graph { struct edge { int to; T cost; }; int N; vector<vector<edge>> G; vector<T> dist; vector<int> prever; Graph(int n) { init(n); } T inf() { if (is_same_v<T, int>) return 1e9; else return 1e18; } T zero() { return T(0); } void init(int n) { N = n; G.resize(N); dist.resize(N, inf()); } void add_edge(int s, int t, T cost) { edge e; e.to = t, e.cost = cost; G[s].push_back(e); } void dijkstra(int s) { rep(i, 0, N) dist[i] = inf(); prever = vector<int>(N, -1); dist[s] = zero(); priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> q; q.push({zero(), s}); while (!q.empty()) { int now; T nowdist; tie(nowdist, now) = q.top(); q.pop(); if (dist[now] < nowdist) continue; for (auto e : G[now]) { T nextdist = nowdist + e.cost; // 次の頂点への距離 if (dist[e.to] > nextdist) { prever[e.to] = now; dist[e.to] = nextdist; q.push({dist[e.to], e.to}); } } } } vector<int> get_path(int t) { // tへの最短路構築 if (dist[t] >= inf()) return {-1}; vector<int> path; for (; t != -1; t = prever[t]) { path.push_back(t); } reverse(path.begin(), path.end()); return path; } }; int main() { int h, w, k; cin >> h >> w >> k; vector a(h, vector<int>(w)); rep(i, 0, h) rep(j, 0, w) cin >> a[i][j]; auto check = [&](int mid) { // ([...,1,1,1,0,0,0,...]) Graph<int> gr(h * w + 1); int s = h * w; gr.add_edge(s, 0, (a[0][0] < mid)); rep(i, 0, h) rep(j, 0, w) { rep(k, 0, 4) { int ni = i + "1012"[k] - '1'; int nj = j + "2101"[k] - '1'; if (ni < 0 || ni >= h || nj < 0 || nj >= w) continue; int cost = a[ni][nj] < mid; gr.add_edge(i * w + j, ni * w + nj, cost); } } gr.dijkstra(s); return gr.dist[h * w - 1] <= k; }; auto binary = [&]() { // ll ll L = 0, R = 1e9 + 1; // 解[L,R) 探索範囲(L,R) ll mid = L + (R - L) / 2; while (R - L > 1) { if (check(mid)) L = mid; else R = mid; mid = L + (R - L) / 2; } return L; // L-true R-false }; cout << binary() << endl; }