結果

問題 No.20 砂漠のオアシス
ユーザー pluto77pluto77
提出日時 2018-07-29 13:21:25
言語 Python2
(2.7.18)
結果
AC  
実行時間 222 ms / 5,000 ms
コード長 1,000 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-07-16 03:19:34
合計ジャッジ時間 2,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 17 ms
6,940 KB
testcase_05 AC 222 ms
8,712 KB
testcase_06 AC 219 ms
9,216 KB
testcase_07 AC 208 ms
9,088 KB
testcase_08 AC 116 ms
8,064 KB
testcase_09 AC 209 ms
9,088 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 AC 21 ms
6,940 KB
testcase_14 AC 29 ms
6,940 KB
testcase_15 AC 24 ms
6,940 KB
testcase_16 AC 49 ms
7,040 KB
testcase_17 AC 38 ms
6,944 KB
testcase_18 AC 44 ms
6,940 KB
testcase_19 AC 52 ms
6,944 KB
testcase_20 AC 16 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki20
import heapq,sys

direction=[(1,0),(0,1),(-1,0),(0,-1)]

def dijkstra(sx,sy,L):
 N=len(L)
 dist=[[float("inf")] * N for i in xrange(N)]
 dist[sy][sx]= 0
 queue=[(0,sx,sy)]
 while queue:
  d,x,y = heapq.heappop(queue)
  if dist[y][x]<d:
   continue
  for dx, dy in direction:
   nx=x+dx
   ny=y+dy

   if 0<=nx<N and 0<=ny<N and dist[ny][nx]>d+L[ny][nx]:
    dist[ny][nx]=d+L[ny][nx]
    heapq.heappush(queue,(dist[ny][nx], nx, ny))
 return dist

n,v,xx,yy=map(int,raw_input().split())
l=[map(int,raw_input().split()) for i in xrange(n)]
xx-=1
yy-=1
dist=dijkstra(0,0,l)
if dist[n-1][n-1]<v:                                                                                                                                                                                                                                                 
 print 'YES'
 sys.exit()
if xx>=0 and dist[yy][xx]<v:
 v=(v-dist[yy][xx])*2
 dist=dijkstra(xx,yy,l)
 if dist[n-1][n-1]<v:
  print 'YES'
  sys.exit()
print 'NO'
0