結果
問題 | No.20 砂漠のオアシス |
ユーザー | Zu_rin |
提出日時 | 2020-05-09 22:13:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,806 bytes |
コンパイル時間 | 749 ms |
コンパイル使用メモリ | 89,736 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 05:03:01 |
合計ジャッジ時間 | 2,166 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 35 ms
6,940 KB |
testcase_06 | AC | 50 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 50 ms
6,948 KB |
testcase_09 | AC | 49 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 8 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 11 ms
6,940 KB |
testcase_20 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <list> #include <queue> #include <tuple> #include <algorithm> #define rep(i, n) for(i = 0; i < (n); i++) #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define MOD 1000000007 #define PI 3.14159265358979323846 #define INF 1 << 30 using namespace std; typedef long long ll; typedef struct Point_Coordinates { int i, j; } point; typedef tuple<int, int, int> pp; int Dijk(const point& s, const point& e, vector<vector<int>>& d) { int k; vector<vector<int>> ans(d.size(), vector<int>(d.size(), INF)); vector<point> dl = { {1,0}, {0,1}, {-1,0}, {0,-1} }; priority_queue<pp, vector<pp>, greater<pp>> que; ans[s.i][s.j] = 0; rep(k, 4) { point n = { s.i + dl[k].i, s.j + dl[k].j }; if (d[n.i][n.j] != INF) que.push(make_tuple(d[n.i][n.j], n.i, n.j)); } while (!que.empty()) { point a = { get<1>(que.top()), get<2>(que.top()) }; int c = get<0>(que.top()); que.pop(); if (ans[a.i][a.j] == INF) { int mi = INF; rep(k, 4) { point dn = { a.i + dl[k].i, a.j + dl[k].j }; if (ans[dn.i][dn.j] == INF && d[dn.i][dn.j] != INF) que.push({ d[dn.i][dn.j], dn.i, dn.j }); else chmin(mi, ans[dn.i][dn.j]); } ans[a.i][a.j] = mi + c; } } return ans[e.i][e.j]; } int main(void) { int num, i, j, V, ans, ok = false; point os; cin >> num >> V >> os.j >> os.i; vector<vector<int>> d(num + 2, vector<int>(num + 2, INF)); for(i = 1; i <= num; i++) { for(j = 1; j <= num; j++) cin >> d[i][j]; } ans = Dijk({ 1,1 }, { num, num }, d); if (ans < V) ok = true; else { ans = Dijk({ 1,1 }, { os.i, os.j }, d); V -= ans; V *= 2; ans = Dijk({ os.i, os.j }, { num, num }, d); if (ans < V) ok = true; } if (ok) printf("YES\n"); else printf("NO\n"); return 0; }