結果

問題 No.160 最短経路のうち辞書順最小
ユーザー roiti46roiti46
提出日時 2015-03-01 23:54:32
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 237 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 80,284 KB
最終ジャッジ日時 2024-06-24 00:42:46
合計ジャッジ時間 7,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,424 KB
testcase_01 AC 83 ms
76,584 KB
testcase_02 AC 82 ms
76,812 KB
testcase_03 AC 83 ms
76,576 KB
testcase_04 AC 230 ms
79,628 KB
testcase_05 AC 232 ms
80,060 KB
testcase_06 AC 237 ms
80,060 KB
testcase_07 AC 221 ms
79,772 KB
testcase_08 AC 223 ms
80,156 KB
testcase_09 AC 219 ms
80,060 KB
testcase_10 AC 220 ms
79,908 KB
testcase_11 AC 224 ms
80,024 KB
testcase_12 AC 220 ms
79,896 KB
testcase_13 AC 220 ms
79,880 KB
testcase_14 AC 220 ms
79,656 KB
testcase_15 AC 219 ms
80,148 KB
testcase_16 AC 224 ms
80,020 KB
testcase_17 AC 222 ms
80,284 KB
testcase_18 AC 219 ms
80,008 KB
testcase_19 AC 220 ms
80,016 KB
testcase_20 AC 226 ms
80,044 KB
testcase_21 AC 218 ms
80,168 KB
testcase_22 AC 217 ms
79,660 KB
testcase_23 AC 222 ms
79,908 KB
testcase_24 AC 227 ms
79,916 KB
testcase_25 AC 221 ms
79,904 KB
testcase_26 AC 220 ms
79,624 KB
testcase_27 AC 200 ms
79,144 KB
testcase_28 AC 223 ms
79,996 KB
testcase_29 AC 197 ms
79,236 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