結果
問題 | No.20 砂漠のオアシス |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-10-11 04:12:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,427 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 86,984 KB |
最終ジャッジ日時 | 2024-06-25 00:57:24 |
合計ジャッジ時間 | 3,699 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
55,424 KB |
testcase_01 | AC | 45 ms
55,936 KB |
testcase_02 | AC | 46 ms
56,192 KB |
testcase_03 | AC | 107 ms
78,080 KB |
testcase_04 | AC | 108 ms
77,440 KB |
testcase_05 | AC | 164 ms
84,736 KB |
testcase_06 | AC | 244 ms
86,872 KB |
testcase_07 | AC | 248 ms
86,984 KB |
testcase_08 | AC | 170 ms
86,656 KB |
testcase_09 | AC | 240 ms
86,912 KB |
testcase_10 | WA | - |
testcase_11 | AC | 44 ms
56,064 KB |
testcase_12 | WA | - |
testcase_13 | AC | 126 ms
78,012 KB |
testcase_14 | AC | 140 ms
78,968 KB |
testcase_15 | AC | 132 ms
78,080 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 166 ms
80,000 KB |
testcase_20 | AC | 105 ms
77,056 KB |
ソースコード
from collections import *from itertools import *from functools import *from heapq import *import sys,mathinput = sys.stdin.readlineN,V,X,Y = map(int,input().split())L = [list(map(int,input().split())) for _ in range(N)]M = N**2e = [[] for _ in range(M)]def f(i,j):return N*i+jH = NW = Ndef nb(x,y):tmp = []if x+1<H:tmp.append((x+1,y))if x-1>=0:tmp.append((x-1,y))if y+1<W:tmp.append((x,y+1))if y-1>=0:tmp.append((x,y-1))return tmpX -= 1Y -= 1for i in range(N):for j in range(N):x = f(i,j)for ix,iy in nb(i,j):e[x].append((f(ix,iy),L[ix][iy]))INF = (1<<30)def dijkstra(s,e):N = len(e)dist = [INF]*Ndist[s]=0h = []heappush(h,(0,s))while h:nw,v = heappop(h)if dist[v]!=nw:continuefor iv,ic in e[v]:nc = ic + nwif nc < dist[iv]:dist[iv] = ncheappush(h,(nc,iv))return distD = dijkstra(0,e)if (X,Y)==(-1,-1):if D[-1]<=V:print('YES')else:print('NO')exit()if D[-1]<=V:print('YES')exit()oasis = f(X,Y)if D[oasis]>V:print('NO')exit()H = V - D[oasis]H *= 2D =dijkstra(oasis,e)if D[-1]<=H:print('YES')else:print('NO')