結果
問題 | No.20 砂漠のオアシス |
ユーザー | convexineq |
提出日時 | 2021-01-17 02:30:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 760 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 65,024 KB |
最終ジャッジ日時 | 2024-11-28 21:14:59 |
合計ジャッジ時間 | 2,031 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 45 ms
58,368 KB |
testcase_05 | AC | 48 ms
63,616 KB |
testcase_06 | WA | - |
testcase_07 | AC | 50 ms
64,512 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 41 ms
52,352 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 45 ms
59,008 KB |
testcase_15 | AC | 44 ms
58,496 KB |
testcase_16 | AC | 45 ms
60,032 KB |
testcase_17 | WA | - |
testcase_18 | AC | 45 ms
59,392 KB |
testcase_19 | WA | - |
testcase_20 | AC | 41 ms
52,736 KB |
ソースコード
n,v,sy,sx = map(int,input().split()) b = [list(map(int,input().split())) for _ in range(n)] sx -= 1;sy -= 1 def dijkstra(x,y,flag): d = [[-1]*n for _ in range(n)] d[x][y] = 0 from heapq import heappush, heappop q = [(0,x,y)] while q: dv,x,y = heappop(q) if d[x][y] <= dv: continue for nx,ny in [(x+1,y),(x-1,y),(x,y-1),(x,y+1)]: if 0 <= nx < n and 0 <= ny < n and d[nx][ny]==-1: d[nx][ny] = dv + b[nx][ny] heappush(q,(dv + b[nx][ny],nx,ny)) if flag: return v > d[-1][-1] else: return v > d[0][0] + b[sx][sy] - b[0][0] and (v - d[0][0] - b[sx][sy] + b[0][0])*2 > d[-1][-1] print("YES" if dijkstra(0,0,1) or (sx>=0 and dijkstra(sx,sy,0)) else "NO")