結果
問題 | No.20 砂漠のオアシス |
ユーザー | kohei2019 |
提出日時 | 2021-02-10 10:38:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 336 ms / 5,000 ms |
コード長 | 1,809 bytes |
コンパイル時間 | 517 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 82,220 KB |
最終ジャッジ日時 | 2024-07-07 20:37:11 |
合計ジャッジ時間 | 3,845 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,864 KB |
testcase_01 | AC | 43 ms
53,888 KB |
testcase_02 | AC | 43 ms
53,248 KB |
testcase_03 | AC | 100 ms
76,728 KB |
testcase_04 | AC | 98 ms
76,928 KB |
testcase_05 | AC | 336 ms
82,220 KB |
testcase_06 | AC | 161 ms
79,540 KB |
testcase_07 | AC | 259 ms
80,080 KB |
testcase_08 | AC | 140 ms
78,420 KB |
testcase_09 | AC | 245 ms
79,956 KB |
testcase_10 | AC | 44 ms
53,248 KB |
testcase_11 | AC | 42 ms
53,120 KB |
testcase_12 | AC | 124 ms
77,248 KB |
testcase_13 | AC | 117 ms
77,252 KB |
testcase_14 | AC | 153 ms
78,184 KB |
testcase_15 | AC | 135 ms
77,392 KB |
testcase_16 | AC | 157 ms
77,792 KB |
testcase_17 | AC | 153 ms
77,928 KB |
testcase_18 | AC | 163 ms
78,276 KB |
testcase_19 | AC | 169 ms
78,628 KB |
testcase_20 | AC | 94 ms
76,496 KB |
ソースコード
import heapq import sys #ダイクストラ法 N,V,ox,oy = map(int,input().split()) ox,oy = oy-1,ox-1 lsL = [list(map(int,input().split())) for i in range(N)] dxy =[(1,0),(0,1),(-1,0),(0,-1)] #オアシスを通らない場合 lsHP = [[-float('INF')]*(N) for i in range(N)] lsHP[0][0] = V#-lsL[0][0] used = [[False]*(N) for i in range(N)] h = [(-lsHP[0][0],0,0)] heapq.heapify(h) while h: cost,x,y = heapq.heappop(h) if used[x][y]: continue used[x][y] = True for dx,dy in dxy: if 0<=x+dx<N and 0<=y+dy<N: if used[x+dx][y+dy]: continue if (lsHP[x][y] - lsL[x+dx][y+dy]) < 0: continue if lsHP[x+dx][y+dy] < (lsHP[x][y] - lsL[x+dx][y+dy]): lsHP[x+dx][y+dy] = (lsHP[x][y] - lsL[x+dx][y+dy]) heapq.heappush(h,(-lsHP[x+dx][y+dy],x+dx,y+dy)) if lsHP[-1][-1] > 0: print('YES') sys.exit() if ox != -1 and oy != -1: #オアシスを通る場合 lsHP2 = [[-float('INF')]*(N) for i in range(N)] lsHP2[ox][oy] = lsHP[ox][oy]*2 used = [[False]*(N) for i in range(N)] h = [(-lsHP[ox][oy],ox,oy)] heapq.heapify(h) while h: cost,x,y = heapq.heappop(h) if used[x][y]: continue used[x][y] = True for dx,dy in dxy: if 0<=x+dx<N and 0<=y+dy<N: if used[x+dx][y+dy]: continue if (lsHP2[x][y] - lsL[x+dx][y+dy]) < 0: continue if lsHP2[x+dx][y+dy] < (lsHP2[x][y] - lsL[x+dx][y+dy]): lsHP2[x+dx][y+dy] = (lsHP2[x][y] - lsL[x+dx][y+dy]) heapq.heappush(h,(-lsHP2[x+dx][y+dy],x+dx,y+dy)) if lsHP2[-1][-1] > 0: print('YES') else: print('NO') else: print('NO')