結果
| 問題 | No.20 砂漠のオアシス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-30 20:06:33 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 839 bytes |
| 記録 | |
| コンパイル時間 | 337 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 21,884 KB |
| 最終ジャッジ日時 | 2026-05-26 18:31:39 |
| 合計ジャッジ時間 | 8,544 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 TLE * 1 -- * 13 |
ソースコード
N, V, Ox, Oy = map(int, input().split())
Ox -= 1
Oy -= 1
L = [[int(j) for j in input().split()] for i in range(N)]
memo = [[0 for i in range(N)] for j in range(N)]
memo[0][0] = V
course = [(1, 0), (0, 1), (-1, 0), (0, -1)]
stack = [(0, 0, V, True)]
while stack:
tmp = stack.pop()
for i in course:
y, x = tmp[0] + i[0], tmp[1] - i[1]
if x < 0 or x >= N or y < 0 or y >= N:
continue
v = tmp[2] - L[y][x]
if v <= memo[y][x]:
continue
if x == N - 1 and y == N - 1:
print('YES')
exit()
if y == Oy and x == Ox and tmp:
memo[y][x] = v * 2
stack.append((y, x, memo[y][x], False))
else:
memo[y][x] = v
stack.append((y, x, memo[y][x], tmp))
print('NO')