結果

問題 No.160 最短経路のうち辞書順最小
ユーザー yuyyuyuyuyyuyu
提出日時 2015-07-25 16:36:38
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 2,437 ms
コンパイル使用メモリ 76,780 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-07-17 13:18:18
合計ジャッジ時間 10,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
76,276 KB
testcase_01 AC 101 ms
76,540 KB
testcase_02 AC 100 ms
76,508 KB
testcase_03 AC 87 ms
76,544 KB
testcase_04 AC 237 ms
79,696 KB
testcase_05 AC 234 ms
79,616 KB
testcase_06 AC 239 ms
80,000 KB
testcase_07 AC 223 ms
80,000 KB
testcase_08 AC 222 ms
79,872 KB
testcase_09 AC 222 ms
79,872 KB
testcase_10 AC 224 ms
79,744 KB
testcase_11 AC 235 ms
79,872 KB
testcase_12 AC 222 ms
79,836 KB
testcase_13 AC 222 ms
79,872 KB
testcase_14 AC 226 ms
79,716 KB
testcase_15 AC 220 ms
79,884 KB
testcase_16 AC 226 ms
79,872 KB
testcase_17 AC 222 ms
79,488 KB
testcase_18 AC 220 ms
79,872 KB
testcase_19 AC 225 ms
79,444 KB
testcase_20 AC 237 ms
79,740 KB
testcase_21 AC 220 ms
79,900 KB
testcase_22 AC 222 ms
79,616 KB
testcase_23 AC 225 ms
79,524 KB
testcase_24 AC 228 ms
79,468 KB
testcase_25 AC 222 ms
80,000 KB
testcase_26 AC 221 ms
79,488 KB
testcase_27 AC 203 ms
79,488 KB
testcase_28 AC 223 ms
79,592 KB
testcase_29 AC 198 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
inf = 10**9
def dfs(path,t):
    if path[-1] == G: return path
    spath = set(path)
    res = []
    for i in xrange(N):
        if i not in spath and t+cost[path[-1]][i]+mincost[i][G] <= time:
            res = dfs(path+[i],t+cost[path[-1]][i])
            if res: return res
    return []

N,M,S,G = map(int,raw_input().split())
cost = [[inf]*N for i in xrange(N)]
for i in xrange(N): cost[i][i] = 0
for loop in xrange(M):
    a,b,c = map(int,raw_input().split())
    cost[a][b] = cost[b][a] = c

mincost = copy.deepcopy(cost)
for k in xrange(N):
    for i in xrange(N):
        for j in xrange(N):
            mincost[i][j] = min(mincost[i][j], mincost[i][k]+mincost[k][j])

time = mincost[S][G]
print " ".join(map(str,dfs([S],0)))
0