結果

問題 No.20 砂漠のオアシス
ユーザー tnodinotnodino
提出日時 2022-02-11 06:31:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 82,004 KB
最終ジャッジ日時 2024-06-26 23:57:41
合計ジャッジ時間 2,618 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,484 KB
testcase_01 AC 41 ms
55,640 KB
testcase_02 AC 40 ms
54,216 KB
testcase_03 AC 62 ms
71,392 KB
testcase_04 AC 63 ms
72,484 KB
testcase_05 AC 130 ms
79,256 KB
testcase_06 AC 70 ms
76,952 KB
testcase_07 AC 175 ms
82,004 KB
testcase_08 AC 86 ms
77,680 KB
testcase_09 AC 117 ms
79,500 KB
testcase_10 WA -
testcase_11 AC 38 ms
55,068 KB
testcase_12 WA -
testcase_13 AC 55 ms
67,584 KB
testcase_14 AC 64 ms
74,356 KB
testcase_15 AC 60 ms
72,896 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 69 ms
76,568 KB
testcase_20 AC 52 ms
66,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def bfs(H, W, L, sx, sy, gx, gy, V, Ox, Oy):
    def _bfs():
        while Queue:
            x,y = Queue.popleft()
            for i in range(len(dx)):
                nx,my = x + dx[i], y + dy[i]
                if nx < 0 or H <= nx or my < 0 or W <= my:
                    continue
                if Cost[nx][my] < Cost[x][y] - L[nx][my]:
                    Cost[nx][my] = Cost[x][y] - L[nx][my]
                    Queue.append((nx, my))
    INF = -10
    dx = [0, 0, -1, 1]
    dy = [-1, 1, 0, 0]
    Cost = [[INF] * W for _ in range(H)]
    Cost[sx][sy] = V
    Queue = deque()
    Queue.append((sx, sy))
    _bfs()
    Cost[Ox][Oy] *= 2
    Queue.append((Ox, Oy))
    _bfs()
    return Cost[gx][gy]

N,V,Ox,Oy = map(int,input().split())
L = [list(map(int,input().split())) for _ in range(N)]
if bfs(N, N, L, 0, 0, N-1, N-1, V, Ox-1, Oy-1) > 0:
    print('YES')
else:
    print('NO')
0