結果
問題 | No.20 砂漠のオアシス |
ユーザー | granddaifuku |
提出日時 | 2020-03-22 12:29:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,792 bytes |
コンパイル時間 | 1,485 ms |
コンパイル使用メモリ | 179,640 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 22:30:43 |
合計ジャッジ時間 | 2,209 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 13 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 14 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 4 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < (int)n; ++i) #define FOR(i, a, b) for(int i = a; i < (int)b; ++i) #define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i) typedef long long ll; typedef long double ld; const int Inf = 1e9; const double EPS = 1e-9; const int MOD = 1e9 + 7; int dx[4] = {0, 0, 1, -1}; int dy[4] = {1, -1, 0, 0}; int n, v, ox, oy; vector<vector<int> > g; using P = pair<int, int>; using PP = pair<int, P>; vector<vector<int> > dist; void dijkstra(int sx = 0, int sy = 0) { dist = vector<vector<int> >(n, vector<int>(n, Inf)); dist[sx][sy] = 0; priority_queue<PP, vector<PP>, greater<PP> > pq; pq.push(PP(0, P(sx, sy))); while (!pq.empty()) { PP p = pq.top(); pq.pop(); int c = p.first; int vx = p.second.first, vy = p.second.second; rep (i, 4) { int nx, ny; nx = vx + dx[i], ny = vy + dy[i]; if (nx < 0 || ny < 0 || nx >= n || ny >= n) continue; if (dist[nx][ny] <= g[nx][ny] + c) continue; dist[nx][ny] = g[nx][ny] + c; pq.push(PP(dist[nx][ny], P(nx, ny))); } } } int main() { cin.tie(nullptr); ios::sync_with_stdio(0); cin >> n >> v >> ox >> oy; ox--, oy--; g = vector<vector<int> >(n, vector<int>(n)); rep (i, n) rep (j, n) cin >> g[i][j]; dijkstra(); if (dist[n - 1][n - 1] < v) { cout << "YES" << endl; return 0; } if (ox >= 0 && oy >= 0) { int toO = 2 * (v - dist[ox][oy]); dijkstra(ox, oy); int toG = dist[n - 1][n - 1] - dist[ox][oy]; if (toG < 2 * toO) { cout << "YES" << endl; return 0; } } cout << "No" << endl; return 0; }