結果
問題 | No.1449 新プロランド |
ユーザー | nasubi24 |
提出日時 | 2021-03-31 15:37:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 703 bytes |
コンパイル時間 | 275 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 87,040 KB |
最終ジャッジ日時 | 2024-06-06 10:59:02 |
合計ジャッジ時間 | 3,045 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
58,496 KB |
testcase_01 | WA | - |
testcase_02 | AC | 65 ms
68,864 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 75 ms
82,688 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 64 ms
69,248 KB |
testcase_10 | AC | 76 ms
85,420 KB |
testcase_11 | AC | 78 ms
86,272 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 48 ms
68,736 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 46 ms
58,880 KB |
testcase_19 | AC | 48 ms
65,920 KB |
testcase_20 | AC | 45 ms
58,624 KB |
testcase_21 | AC | 59 ms
72,192 KB |
testcase_22 | AC | 51 ms
63,232 KB |
testcase_23 | AC | 76 ms
85,760 KB |
testcase_24 | AC | 74 ms
74,448 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
from collections import deque n,m=map(int,input().split()) ans=[[10**10]*(11**4+200) for _ in range(n)] num=[[] for _ in range(n)] for i in range(m): a,b,c=map(int,input().split()) num[a-1].append([b-1,c]) num[b-1].append([a-1,c]) t=list(map(int,input().split())) ans[0][t[0]]=t[0] queue=deque() queue.append([0,t[0]]) while len(queue)!=0: num1=queue.popleft() h1=num1[0] h2=num1[1] num2=num[h1] num3=ans[h1][h2] for i in range(len(num2)): j=num2[i][0] if h2+t[j]<num2[i][1]: cnt=num3+num2[i][1]//h2+t[j] if ans[j][h2+t[j]]>cnt: ans[j][h2+t[j]]=cnt queue.append([j,h2+t[j]]) print(min(ans[-1]))