結果

問題 No.20 砂漠のオアシス
ユーザー KodaiKodai
提出日時 2020-04-30 21:29:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 892 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 818,048 KB
最終ジャッジ日時 2024-12-17 18:12:30
合計ジャッジ時間 28,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
26,368 KB
testcase_01 AC 31 ms
25,856 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 46 ms
10,880 KB
testcase_04 AC 83 ms
11,136 KB
testcase_05 AC 63 ms
12,928 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,375 ms
12,800 KB
testcase_09 TLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 232 ms
11,392 KB
testcase_15 AC 160 ms
11,136 KB
testcase_16 AC 902 ms
12,160 KB
testcase_17 WA -
testcase_18 AC 354 ms
11,520 KB
testcase_19 WA -
testcase_20 AC 40 ms
25,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N, V, Ox, Oy = map(int, input().split())
L_list = [list(map(int, input().split())) for i in range(N)]

position_list = [[-float("inf") for i in range(N)] for j in range(N)]


def solve(i, j, v):

    position_list[i][j] = v
    if v <= 0:
        return 0
    if i == j == N - 1:
        print("YES")
        exit()
    if i == Oy - 1 and j == Ox - 1:
        v *= 2

    if i != 0 and position_list[i - 1][j] < v - L_list[i - 1][j]:
        solve(i - 1, j, v - L_list[i - 1][j])
    if i != N - 1 and position_list[i + 1][j] < v - L_list[i + 1][j]:
        solve(i + 1, j, v - L_list[i + 1][j])
    if j != 0 and position_list[i][j - 1] < v - L_list[i][j - 1]:
        solve(i, j - 1, v - L_list[i][j - 1])
    if j != N - 1 and position_list[i][j + 1] < v - L_list[i][j + 1]:
        solve(i, j + 1, v - L_list[i][j + 1])


solve(0, 0, V)
print("NO")
0