結果
問題 | No.20 砂漠のオアシス |
ユーザー | Kodai |
提出日時 | 2020-04-30 21:46:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,425 bytes |
コンパイル時間 | 126 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-12-17 18:47:24 |
合計ジャッジ時間 | 13,139 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 27 ms
11,008 KB |
testcase_02 | AC | 28 ms
10,880 KB |
testcase_03 | AC | 42 ms
11,008 KB |
testcase_04 | AC | 81 ms
11,008 KB |
testcase_05 | AC | 56 ms
13,056 KB |
testcase_06 | AC | 142 ms
12,672 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 1,350 ms
12,672 KB |
testcase_09 | AC | 1,698 ms
12,800 KB |
testcase_10 | AC | 28 ms
10,752 KB |
testcase_11 | AC | 28 ms
10,752 KB |
testcase_12 | AC | 55 ms
11,136 KB |
testcase_13 | AC | 102 ms
11,008 KB |
testcase_14 | AC | 281 ms
11,136 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 215 ms
11,008 KB |
testcase_18 | WA | - |
testcase_19 | AC | 732 ms
11,264 KB |
testcase_20 | WA | - |
ソースコード
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): #print(i, j) position_list[i][j] = v if i == j == N - 1: print("YES") exit() if i != 0 and position_list[i - 1][j] < v - L_list[i - 1][j] and v - L_list[i - 1][j] > 0: if i - 1 == Oy - 1 and j == Ox - 1: solve(i - 1, j, (v - L_list[i - 1][j]) * 2) else: 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] and v - L_list[i + 1][j] > 0: if i + 1 == Oy - 1 and j == Ox - 1: solve(i + 1, j, (v - L_list[i + 1][j]) * 2) else: 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]and v - L_list[i][j - 1] > 0: if i == Oy - 1 and j - 1 == Ox - 1: solve(i, j - 1, (v - L_list[i][j - 1]) * 2) else: 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]and v - L_list[i][j + 1] > 0: if i == Oy - 1 and j + 1 == Ox - 1: solve(i, j + 1, (v - L_list[i][j + 1]) * 2) else: solve(i, j + 1, v - L_list[i][j + 1]) return solve(0, 0, V) print("NO")