結果

問題 No.1449 新プロランド
ユーザー 小野寺健小野寺健
提出日時 2021-05-02 16:37:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 728 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-12-24 02:07:57
合計ジャッジ時間 5,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
15,872 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 49 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 107 ms
11,008 KB
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 40 ms
10,880 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 34 ms
10,624 KB
testcase_12 AC 689 ms
13,312 KB
testcase_13 AC 33 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 33 ms
10,496 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 50 ms
10,880 KB
testcase_18 AC 33 ms
10,624 KB
testcase_19 AC 32 ms
10,496 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 32 ms
10,624 KB
testcase_25 AC 35 ms
10,752 KB
testcase_26 AC 33 ms
10,752 KB
testcase_27 TLE -
testcase_28 AC 66 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Town:
    def __init__(self):
        self.T = None
        self.V = []
    def __str__(self):
        return "T:" + str(self.T) + ",V:" + str(self.V)
        
N, M = map(int, input().split())
T = [Town() for _ in range(N)]
for _ in range(M):
    a, b, c = map(int, input().split())
    T[a-1].V.append((b-1, c))
    T[b-1].V.append((a-1, c))
for i, t in enumerate(list(map(int, input().split()))):
    T[i].T = t
    
G = float('inf')    
    
q = [(0, 0, 0)]
while len(q) > 0:
    i, m, p = q.pop(0)
    t = T[i]
    p += t.T
    m += t.T
    for j, c in t.V:
        nt = T[j]
        if G > m+c//p:
            if j == N-1:
                G = m+c//p
            else:
                q.append((j, m+c//p, p))
print(G)
0