結果
問題 | No.1449 新プロランド |
ユーザー | DrDrpilot |
提出日時 | 2022-02-23 16:44:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,160 KB |
最終ジャッジ日時 | 2024-06-06 11:10:30 |
合計ジャッジ時間 | 2,614 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,880 KB |
testcase_01 | AC | 37 ms
10,752 KB |
testcase_02 | AC | 42 ms
10,880 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 35 ms
10,880 KB |
testcase_05 | AC | 73 ms
11,904 KB |
testcase_06 | AC | 67 ms
11,520 KB |
testcase_07 | AC | 47 ms
11,136 KB |
testcase_08 | AC | 59 ms
11,520 KB |
testcase_09 | AC | 81 ms
11,392 KB |
testcase_10 | AC | 52 ms
11,392 KB |
testcase_11 | AC | 42 ms
11,008 KB |
testcase_12 | AC | 50 ms
11,392 KB |
testcase_13 | AC | 80 ms
11,264 KB |
testcase_14 | AC | 37 ms
11,136 KB |
testcase_15 | AC | 69 ms
11,520 KB |
testcase_16 | AC | 52 ms
11,264 KB |
testcase_17 | AC | 59 ms
11,264 KB |
testcase_18 | AC | 31 ms
10,880 KB |
testcase_19 | AC | 33 ms
10,880 KB |
testcase_20 | AC | 32 ms
10,624 KB |
testcase_21 | AC | 36 ms
11,008 KB |
testcase_22 | AC | 37 ms
10,880 KB |
testcase_23 | AC | 48 ms
11,264 KB |
testcase_24 | AC | 73 ms
11,264 KB |
testcase_25 | WA | - |
testcase_26 | AC | 35 ms
10,752 KB |
testcase_27 | AC | 105 ms
12,160 KB |
testcase_28 | AC | 106 ms
11,648 KB |
ソースコード
import heapq n,m=map(int,input().split()) g=[[] for _ in range(n)] for _ in range(m): a,b,c=map(int,input().split()) g[a-1].append((b-1,c)) g[b-1].append((a-1,c)) t=list(map(int,input().split())) time=[[float('inf')]*501 for _ in range(n)] time[0][0]=0 q=[(0,0,0)] while q: now_time,now_place,eat_time=heapq.heappop(q) if time[now_place][eat_time]<now_time: continue now_time+=t[now_place] eat_time=min(eat_time+t[now_place],500) for to_place,to_dst in g[now_place]: if time[to_place][eat_time]>now_time+to_dst//eat_time: time[to_place][eat_time]=now_time+to_dst//eat_time heapq.heappush(q,(now_time+to_dst//eat_time,to_place,eat_time)) print(min(time[n-1]))