結果

問題 No.807 umg tours
ユーザー momotaros300momotaros300
提出日時 2019-10-26 17:53:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,840 ms / 4,000 ms
コード長 1,294 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-11-23 19:40:44
合計ジャッジ時間 27,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 1,533 ms
67,328 KB
testcase_12 AC 1,578 ms
63,872 KB
testcase_13 AC 2,204 ms
80,256 KB
testcase_14 AC 889 ms
43,008 KB
testcase_15 AC 653 ms
35,968 KB
testcase_16 AC 2,184 ms
82,556 KB
testcase_17 AC 2,840 ms
99,456 KB
testcase_18 AC 2,785 ms
98,560 KB
testcase_19 AC 2,669 ms
95,488 KB
testcase_20 AC 1,391 ms
65,792 KB
testcase_21 AC 1,426 ms
68,224 KB
testcase_22 AC 531 ms
35,840 KB
testcase_23 AC 401 ms
30,336 KB
testcase_24 AC 1,396 ms
82,924 KB
testcase_25 AC 2,815 ms
104,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = lambda: sys.stdin.readline()[:-1]
sys.setrecursionlimit(10**8)
inf=float('inf')
import heapq

def disktra(g,s):
    n=len(g)
    dist = [[inf]*2 for i in range(n)]
    maxd=[0]*n
    dist[s][0] = 0
    dist[s][1]=0
    hq=[]
    heapq.heappush(hq,(dist[s][0],s,0))
    while hq:
        cost,u,used =heapq.heappop(hq)
        if dist[u][used] < cost:
            continue
        if used ==0:
            for v, c in g[u]:
                # print(dist[v][1])
                # print(v)
                if dist[v][1] <= dist[u][0] :pass
                else:
                    dist[v][1] = dist[u][0]
                    heapq.heappush(hq, (dist[v][1], v, 1))

            
        for v,c in g[u]:
            if dist[v][used] <= dist[u][used] +c:
                continue
            dist[v][used] = dist[u][used] + c
            
            heapq.heappush(hq,(dist[v][used],v,used))
    return dist

n,m=map(int,input().split())
abc=[]
G=[[]*n for i in range(n)]
G2=[[]*n for i in range(n)]

for i in range(m):
    a,b,c=map(int,input().split())
    a-=1;b-=1
    G[a].append((b,c))
    G[b].append((a,c))
d1=disktra(G,0)
# d2=disktra(G,0)
for i in range(n):
    ans=min(d1[i][1]+d1[i][0],d1[i][0]+d1[i][1])
    print(ans)
# print(d1)
# print(d2)
0