結果

問題 No.20 砂漠のオアシス
ユーザー dangodango
提出日時 2023-07-08 18:26:31
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 785 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 83,024 KB
最終ジャッジ日時 2024-07-22 13:50:56
合計ジャッジ時間 7,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 54 ms
62,464 KB
testcase_03 AC 105 ms
76,544 KB
testcase_04 AC 174 ms
77,596 KB
testcase_05 AC 200 ms
83,024 KB
testcase_06 AC 254 ms
79,232 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, V, Ox, Oy = map(int, input().split())
Ox -= 1
Oy -= 1
L = [list(map(int, input().split())) for _ in range(N)]
visited = [[0] * N for _ in range(N)]

def dfs(x, y, v):
    visited[y][x] = v
    if x == N - 1 and y == N - 1:
        return 1
    dx = [-1, 1, 0, 0]
    dy = [0, 0, -1, 1]
    for d in range(4):
        nx = x + dx[d]
        ny = y + dy[d]
        if nx >= 0 and nx < N and ny >= 0 and ny < N:
            r = v - L[ny][nx]
            if r > visited[ny][nx]:
                if dfs(nx, ny, r):
                    return 1
    return 0

possible = dfs(0, 0, V)
if not possible:
    r = visited[Oy][Ox]
    if not (Ox == 0 and Oy == 0) and r > 0:
        visited = [[0] * N for _ in range(N)]
        possible = dfs(Ox, Oy, r * 2)

print("YES" if possible else "NO")
0