結果
問題 | No.20 砂漠のオアシス |
ユーザー | SSRS |
提出日時 | 2020-11-08 23:46:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,049 bytes |
コンパイル時間 | 1,704 ms |
コンパイル使用メモリ | 180,448 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 15:46:57 |
合計ジャッジ時間 | 2,682 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 54 ms
5,376 KB |
testcase_06 | AC | 55 ms
5,376 KB |
testcase_07 | AC | 57 ms
5,376 KB |
testcase_08 | AC | 30 ms
5,376 KB |
testcase_09 | AC | 56 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 6 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 11 ms
5,376 KB |
testcase_17 | AC | 9 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 12 ms
5,376 KB |
testcase_20 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 100000; vector<int> dy = {1, 0, -1, 0}; vector<int> dx = {0, 1, 0, -1}; int main(){ int N, V, Ox, Oy; cin >> N >> V >> Ox >> Oy; Ox--; Oy--; vector<vector<int>> L(N, vector<int>(N)); for (int i = 0; i < N; i++){ for (int j = 0; j < N; j++){ cin >> L[i][j]; } } vector<vector<int>> S1(N, vector<int>(N, INF)); priority_queue<tuple<int, int, int>, vector<tuple<int, int, int>>, greater<tuple<int, int, int>>> pq1; pq1.push(make_tuple(L[0][0], 0, 0)); while (!pq1.empty()){ int c = get<0>(pq1.top()); int y = get<1>(pq1.top()); int x = get<2>(pq1.top()); pq1.pop(); if (S1[y][x] == INF){ S1[y][x] = c; for (int i = 0; i < 4; i++){ int y2 = y + dy[i]; int x2 = x + dx[i]; if (0 <= y2 && y2 < N && 0 <= x2 && x2 < N){ pq1.push(make_tuple(c + L[y2][x2], y2, x2)); } } } } if (Ox == -1 && Oy == -1){ if (S1[N - 1][N - 1] < V){ cout << "YES" << endl; } else { cout << "NO" << endl; } } else { if (S1[N - 1][N - 1] < V){ cout << "YES" << endl; } else if (S1[Oy][Ox] >= V){ cout << "NO" << endl; } else { vector<vector<int>> S2(N, vector<int>(N, INF)); priority_queue<tuple<int, int, int>, vector<tuple<int, int, int>>, greater<tuple<int, int, int>>> pq2; pq2.push(make_tuple(0, Oy, Ox)); while (!pq2.empty()){ int c = get<0>(pq2.top()); int y = get<1>(pq2.top()); int x = get<2>(pq2.top()); pq2.pop(); if (S2[y][x] == INF){ S2[y][x] = c; for (int i = 0; i < 4; i++){ int y2 = y + dy[i]; int x2 = x + dx[i]; if (0 <= y2 && y2 < N && 0 <= x2 && x2 < N){ pq2.push(make_tuple(c + L[y2][x2], y2, x2)); } } } } if (S2[N - 1][N - 1] < (V - S1[Oy][Ox]) * 2){ cout << "YES" << endl; } else { cout << "NO" << endl; } } } }