結果
問題 | No.20 砂漠のオアシス |
ユーザー | Tawara |
提出日時 | 2015-12-30 03:01:07 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 482 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-10-13 05:31:50 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
from heapq import heappop,heappush I=lambda:map(int,raw_input().split()) N,V,x,y=I();o=(x-1,y-1);g=(N-1,N-1);L=[I()for i in range(N)] dxy=((1,0),(0,1),(-1,0),(0,-1));D=[N*[0]for i in range(N)];D[0][0]=-V Q=[];heappush(Q,(-V,(0,0),True)) while Q: v,h,f=heappop(Q) if h == g:print"YES";break for dx,dy in dxy: nx=h[0]+dx;ny=h[1]+dy if 0<=nx<N and 0<=ny<N: n=(nx,ny);nv=v+L[ny][nx] if f and n==o:nv*=2;f=False if nv<D[ny][nx]:D[ny][nx]=nv;heappush(Q,n,f) else:print"NO"