結果

問題 No.160 最短経路のうち辞書順最小
ユーザー roiti46roiti46
提出日時 2015-03-01 23:58:20
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,348 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,408 KB
最終ジャッジ日時 2024-06-24 00:49:10
合計ジャッジ時間 106,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 4,002 ms
8,140 KB
testcase_05 AC 4,088 ms
8,320 KB
testcase_06 AC 4,063 ms
8,576 KB
testcase_07 AC 4,007 ms
8,136 KB
testcase_08 AC 4,064 ms
8,028 KB
testcase_09 AC 3,973 ms
8,260 KB
testcase_10 AC 3,949 ms
8,040 KB
testcase_11 AC 3,971 ms
7,932 KB
testcase_12 AC 3,958 ms
7,892 KB
testcase_13 AC 3,943 ms
8,140 KB
testcase_14 AC 4,014 ms
7,892 KB
testcase_15 AC 4,231 ms
8,136 KB
testcase_16 AC 4,017 ms
8,060 KB
testcase_17 AC 3,976 ms
8,024 KB
testcase_18 AC 3,953 ms
8,024 KB
testcase_19 AC 4,026 ms
8,020 KB
testcase_20 AC 4,348 ms
8,152 KB
testcase_21 AC 3,981 ms
7,876 KB
testcase_22 AC 4,020 ms
7,888 KB
testcase_23 AC 4,009 ms
8,040 KB
testcase_24 AC 4,078 ms
8,180 KB
testcase_25 AC 3,974 ms
8,024 KB
testcase_26 AC 4,012 ms
8,136 KB
testcase_27 AC 3,942 ms
8,192 KB
testcase_28 AC 4,004 ms
9,408 KB
testcase_29 AC 3,945 ms
9,344 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