結果

問題 No.807 umg tours
ユーザー buey_tbuey_t
提出日時 2023-03-19 13:23:08
言語 PyPy3
(7.3.13)
結果
TLE  
実行時間 -
コード長 1,975 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,692 KB
実行使用メモリ 180,160 KB
最終ジャッジ日時 2023-10-18 17:47:57
合計ジャッジ時間 39,318 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
89,100 KB
testcase_01 AC 156 ms
89,004 KB
testcase_02 AC 174 ms
89,224 KB
testcase_03 AC 169 ms
89,220 KB
testcase_04 AC 164 ms
89,000 KB
testcase_05 AC 161 ms
89,120 KB
testcase_06 AC 189 ms
89,224 KB
testcase_07 AC 169 ms
89,220 KB
testcase_08 AC 136 ms
88,352 KB
testcase_09 AC 142 ms
88,664 KB
testcase_10 AC 144 ms
88,664 KB
testcase_11 AC 2,832 ms
156,176 KB
testcase_12 AC 2,028 ms
138,740 KB
testcase_13 AC 2,908 ms
157,316 KB
testcase_14 AC 1,204 ms
119,352 KB
testcase_15 AC 932 ms
111,360 KB
testcase_16 AC 3,004 ms
159,124 KB
testcase_17 AC 3,903 ms
177,428 KB
testcase_18 AC 3,690 ms
174,968 KB
testcase_19 AC 3,428 ms
168,596 KB
testcase_20 AC 1,317 ms
128,252 KB
testcase_21 AC 1,403 ms
129,884 KB
testcase_22 AC 655 ms
106,192 KB
testcase_23 AC 559 ms
102,212 KB
testcase_24 AC 1,711 ms
168,456 KB
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    try:
        import pypyjit
        pypyjit.set_param('max_unroll_recursion=-1')
    except:
        pass
    try:
        import sys
        sys.setrecursionlimit(10**7)
    except:
        pass
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    
    
    '''
    
    
    
    '''
    
    N,M = map(int, input().split())
    G = [[] for _ in range(N+1)]
    for _ in range(M):
        a,b,c = map(int, input().split())
        G[a].append((b,c))
        G[b].append((a,c))
    
    Q = []
    heappush(Q,(0,1,0))
    dis = [[INF]*2 for _ in range(N+1)]
    dis[0][1] = 0
    
    while len(Q) > 0:
        cnt,pos,f = heappop(Q)
        
        if dis[pos][f] != INF:
            continue
        
        dis[pos][f] = cnt
        
        if f == 1 and dis[pos][1] >= dis[pos][0]:
            continue
        
        for nx,d in G[pos]:
            if dis[nx][f] == INF:
                heappush(Q,(cnt+d,nx,f))
            if f == 0 and dis[nx][1] == INF and cnt<dis[nx][0]:
                heappush(Q,(cnt,nx,1))
    
    for i in range(1,N+1):
        print(dis[i][0]+min(dis[i][0],dis[i][1]))
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0