結果
問題 | No.20 砂漠のオアシス |
ユーザー | NotationNap |
提出日時 | 2015-04-25 23:17:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,357 bytes |
コンパイル時間 | 1,357 ms |
コンパイル使用メモリ | 164,104 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 05:07:37 |
合計ジャッジ時間 | 4,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 12 ms
5,248 KB |
testcase_05 | AC | 9 ms
5,248 KB |
testcase_06 | AC | 19 ms
5,248 KB |
testcase_07 | AC | 1,184 ms
5,248 KB |
testcase_08 | AC | 140 ms
5,248 KB |
testcase_09 | AC | 454 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 12 ms
5,248 KB |
testcase_14 | AC | 38 ms
5,248 KB |
testcase_15 | AC | 21 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 98 ms
5,248 KB |
testcase_20 | AC | 5 ms
5,248 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long Int; #define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i)) int N; int ox, oy; int L[200][200]; int memo[200][200][2]; bool isin(int x, int y) { return 0 <= x && x < N && 0 <= y && y < N; } struct S { int x; int y; int v; int o; int& ref() { return memo[x][y][o]; } bool operator<(const S& o) const { return v > o.v; } }; int dx[] = { 0, 1, 0, -1 }; int dy[] = { 1, 0, -1, 0 }; int main() { int V; cin >> N >> V; cin >> ox >> oy; ox--; oy--; REP(i, N) REP(j, N) cin >> L[i][j]; bool ok = false; priority_queue<S> pq; S start; start.x = 0; start.y = 0; start.v = V; start.o = 0; start.ref() = V; pq.push(start); while (!pq.empty()) { S cur = pq.top(); pq.pop(); if (cur.v <= 0) continue; if (cur.x == N-1 && cur.y == N-1) { ok = true; break; } REP(i, 4) { int nx = cur.x + dx[i]; int ny = cur.y + dy[i]; if (isin(nx, ny)) { S next = cur; next.x = nx; next.y = ny; next.v -= L[nx][ny]; if (next.x == ox && next.y == oy && next.o == 0) { next.v *= 2; next.o = 1; if (next.v > next.ref()) { next.ref() = next.v; pq.push(next); } } else { if (next.v > next.ref()) { next.ref() = next.v; pq.push(next); } } } } } cout << (ok ? "YES" : "NO") << endl; }