結果
問題 | No.20 砂漠のオアシス |
ユーザー | Tawara |
提出日時 | 2015-12-30 02:28:02 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 543 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 9,652 KB |
最終ジャッジ日時 | 2024-10-13 05:31:12 |
合計ジャッジ時間 | 2,739 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,816 KB |
testcase_01 | AC | 12 ms
6,820 KB |
testcase_02 | AC | 13 ms
6,816 KB |
testcase_03 | AC | 18 ms
6,816 KB |
testcase_04 | AC | 18 ms
6,820 KB |
testcase_05 | AC | 373 ms
9,652 KB |
testcase_06 | AC | 259 ms
8,064 KB |
testcase_07 | WA | - |
testcase_08 | AC | 334 ms
8,192 KB |
testcase_09 | AC | 264 ms
8,064 KB |
testcase_10 | WA | - |
testcase_11 | AC | 11 ms
6,816 KB |
testcase_12 | AC | 21 ms
6,816 KB |
testcase_13 | AC | 27 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 47 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | AC | 69 ms
6,816 KB |
testcase_20 | WA | - |
ソースコード
from heapq import heappop,heappush I=lambda:map(int,raw_input().split()) N,V,x,y=I();s=(0,0);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)) def d(s,g): Q=[];D=[N*[100000]for i in range(N)] D[s[1]][s[0]]=0 heappush(Q,(0,(0,0))) while Q: c,h=heappop(Q) if h == g:break for dx,dy in dxy: nx=h[0]+dx;ny=h[1]+dy if 0<=nx<N and 0<=ny<N and c+L[ny][nx]<D[ny][nx]: D[ny][nx]=nc=c+L[ny][nx];heappush(Q,(nc,(nx,ny))) return D[g[1]][g[0]] print["NO","YES"][V>d(s,g)or(x*y!=0 and(V-d(s,o))*2>d(o,g))]