結果
問題 | No.1283 Extra Fee |
ユーザー | 👑 Kazun |
提出日時 | 2021-02-10 18:50:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 809 ms / 2,000 ms |
コード長 | 2,006 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,708 KB |
実行使用メモリ | 117,028 KB |
最終ジャッジ日時 | 2024-11-16 07:18:18 |
合計ジャッジ時間 | 12,784 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,092 KB |
testcase_01 | AC | 40 ms
54,060 KB |
testcase_02 | AC | 42 ms
53,652 KB |
testcase_03 | AC | 39 ms
54,752 KB |
testcase_04 | AC | 39 ms
53,776 KB |
testcase_05 | AC | 39 ms
53,228 KB |
testcase_06 | AC | 40 ms
54,680 KB |
testcase_07 | AC | 41 ms
54,820 KB |
testcase_08 | AC | 44 ms
54,372 KB |
testcase_09 | AC | 41 ms
54,920 KB |
testcase_10 | AC | 41 ms
55,040 KB |
testcase_11 | AC | 180 ms
79,172 KB |
testcase_12 | AC | 179 ms
78,564 KB |
testcase_13 | AC | 136 ms
77,348 KB |
testcase_14 | AC | 212 ms
79,940 KB |
testcase_15 | AC | 278 ms
82,648 KB |
testcase_16 | AC | 149 ms
77,468 KB |
testcase_17 | AC | 644 ms
115,256 KB |
testcase_18 | AC | 751 ms
106,408 KB |
testcase_19 | AC | 785 ms
106,212 KB |
testcase_20 | AC | 684 ms
103,832 KB |
testcase_21 | AC | 714 ms
104,608 KB |
testcase_22 | AC | 667 ms
101,184 KB |
testcase_23 | AC | 528 ms
91,364 KB |
testcase_24 | AC | 622 ms
99,196 KB |
testcase_25 | AC | 809 ms
106,280 KB |
testcase_26 | AC | 793 ms
106,016 KB |
testcase_27 | AC | 778 ms
106,384 KB |
testcase_28 | AC | 787 ms
106,492 KB |
testcase_29 | AC | 676 ms
117,028 KB |
ソースコード
from heapq import heappop,heappush class Heap_Point: def __init__(self,x,d): self.d=d self.x=x def __str__(self): return "(point:{}, dist:{})".format(self.x,self.d) def __repr__(self): return str(self) def __lt__(self,other): return self.d<other.d def __iter__(self): yield from (self.x,self.d) class Dijkstra_Heap: def __init__(self): self.heap=[] def __str__(self): return str(self.heap) def __repr__(self): return repr(self.heap) def __bool__(self): return bool(self.heap) def push(self,point,dist): heappush(self.heap,Heap_Point(point,dist)) def pop(self): assert self.heap return heappop(self.heap) def main(): import sys from heapq import heappop,heappush input=sys.stdin.readline N,M=map(int,input().split()) inf=float("inf") F=[[1]*(N+1) for _ in range(N+1)] for _ in range(M): h,w,c=map(int,input().split()) F[h][w]+=c V=[(1,0),(-1,0),(0,1),(0,-1)] Dist0=[[inf]*(N+1) for __ in range(N+1)] Dist1=[[inf]*(N+1) for __ in range(N+1)] Dist0[1][1]=0 H=Dijkstra_Heap() H.push((1,1,0),0) while H: v,d=H.pop() i,j,m=v if (m==0 and d<Dist0[i][j]) or (m==1 and d<Dist1[i][j]): continue if i==j==N: break for (a,b) in V: if 1<=i+a<=N and 1<=j+b<=N: c=d+F[i+a][j+b] if m==0 and c<Dist0[i+a][j+b]: Dist0[i+a][j+b]=c H.push((i+a,j+b,0),c) if m==1 and c<Dist1[i+a][j+b]: Dist1[i+a][j+b]=c H.push((i+a,j+b,1),c) if m==0 and d+1<Dist1[i+a][j+b]: Dist1[i+a][j+b]=d+1 H.push((i+a,j+b,1),d+1) print(min(Dist0[N][N],Dist1[N][N])) if __name__=="__main__": main()