結果
問題 | No.1283 Extra Fee |
ユーザー | tanon710 |
提出日時 | 2020-11-07 01:40:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,445 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 82,128 KB |
実行使用メモリ | 156,792 KB |
最終ジャッジ日時 | 2024-07-22 14:02:55 |
合計ジャッジ時間 | 27,383 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,972 KB |
testcase_01 | AC | 35 ms
53,312 KB |
testcase_02 | AC | 37 ms
54,376 KB |
testcase_03 | AC | 38 ms
53,744 KB |
testcase_04 | AC | 37 ms
53,492 KB |
testcase_05 | AC | 38 ms
54,148 KB |
testcase_06 | AC | 39 ms
53,504 KB |
testcase_07 | AC | 40 ms
53,036 KB |
testcase_08 | AC | 41 ms
54,260 KB |
testcase_09 | AC | 38 ms
54,332 KB |
testcase_10 | AC | 38 ms
54,012 KB |
testcase_11 | AC | 208 ms
80,824 KB |
testcase_12 | AC | 250 ms
81,040 KB |
testcase_13 | AC | 189 ms
79,920 KB |
testcase_14 | AC | 415 ms
87,752 KB |
testcase_15 | AC | 599 ms
92,472 KB |
testcase_16 | AC | 211 ms
80,916 KB |
testcase_17 | AC | 1,413 ms
123,144 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1,990 ms
139,656 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 1,819 ms
130,788 KB |
testcase_23 | AC | 1,666 ms
136,340 KB |
testcase_24 | AC | 1,717 ms
140,420 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | AC | 1,593 ms
126,044 KB |
ソースコード
import heapq n,m=map(int,input().split()) fees={} for _ in range(m): y,x,cost=map(int,input().split()) fees[(x-1,y-1)]=cost INF=10**18 costs=[[[INF,INF] for _ in range(n)] for _ in range(n)] costs[0][0]=[0,0] q=[] heapq.heappush(q,(0,0,0,0)) while len(q)!=0: curcost,x,y,skipped=heapq.heappop(q) if x==n-1 and y==n-1: print(curcost) exit() for dx,dy in [(-1,0),(1,0),(0,-1),(0,1)]: if 0<=x+dx<=n-1 and 0<=y+dy<=n-1: if (x+dx,y+dy) in fees: if skipped==0: if costs[y+dy][x+dx][skipped+1]>curcost+1: heapq.heappush(q,(curcost+1,x+dx,y+dy,skipped+1)) costs[y+dy][x+dx][skipped+1]=curcost+1 if costs[y+dy][x+dx][skipped]>curcost+1+fees[(x+dx,y+dy)]: heapq.heappush(q,(curcost+1+fees[(x+dx,y+dy)],x+dx,y+dy,skipped)) costs[y+dy][x+dx][skipped]=curcost+1+fees[(x+dx,y+dy)] else: if costs[y+dy][x+dx][skipped]>curcost+1+fees[(x+dx,y+dy)]: heapq.heappush(q,(curcost+1+fees[(x+dx,y+dy)],x+dx,y+dy,skipped)) costs[y+dy][x+dx][skipped]=curcost+1+fees[(x+dx,y+dy)] else: if costs[y+dy][x+dx][skipped]>curcost+1: heapq.heappush(q,(curcost+1,x+dx,y+dy,skipped)) costs[y+dy][x+dx][skipped]=curcost+1