結果

問題 No.1473 おでぶなおばけさん
ユーザー buey_tbuey_t
提出日時 2023-03-26 10:04:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,617 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 116,248 KB
最終ジャッジ日時 2024-09-19 09:29:28
合計ジャッジ時間 21,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
85,092 KB
testcase_01 AC 119 ms
85,120 KB
testcase_02 AC 505 ms
108,672 KB
testcase_03 WA -
testcase_04 AC 337 ms
99,532 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 395 ms
106,880 KB
testcase_08 WA -
testcase_09 AC 397 ms
106,624 KB
testcase_10 AC 296 ms
108,544 KB
testcase_11 WA -
testcase_12 AC 253 ms
98,048 KB
testcase_13 AC 222 ms
95,360 KB
testcase_14 AC 217 ms
96,256 KB
testcase_15 AC 290 ms
108,976 KB
testcase_16 AC 258 ms
101,760 KB
testcase_17 AC 170 ms
91,008 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 518 ms
111,404 KB
testcase_22 AC 520 ms
110,924 KB
testcase_23 AC 441 ms
103,772 KB
testcase_24 AC 548 ms
108,560 KB
testcase_25 AC 555 ms
110,276 KB
testcase_26 AC 371 ms
104,988 KB
testcase_27 AC 354 ms
99,712 KB
testcase_28 AC 389 ms
106,652 KB
testcase_29 AC 317 ms
101,632 KB
testcase_30 AC 386 ms
104,576 KB
testcase_31 AC 542 ms
109,896 KB
testcase_32 WA -
testcase_33 AC 441 ms
106,240 KB
testcase_34 AC 250 ms
96,256 KB
testcase_35 AC 339 ms
99,840 KB
testcase_36 AC 534 ms
107,844 KB
testcase_37 AC 327 ms
101,760 KB
testcase_38 AC 203 ms
92,288 KB
testcase_39 AC 255 ms
100,600 KB
testcase_40 AC 256 ms
101,888 KB
testcase_41 AC 280 ms
113,024 KB
testcase_42 AC 276 ms
112,836 KB
testcase_43 AC 480 ms
116,248 KB
testcase_44 AC 486 ms
116,244 KB
testcase_45 AC 492 ms
116,248 KB
testcase_46 AC 322 ms
101,120 KB
testcase_47 AC 394 ms
103,788 KB
testcase_48 AC 386 ms
103,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    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
    #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!
    
    
    '''
    
    
    
    '''
    
    N,M = map(int, input().split())
    
    G = [[] for _ in range(N+1)]
    
    for _ in range(M):
        u,v,w = map(int, input().split())
        G[u].append((v,w))
        G[v].append((u,w))
    
    Q = []
    heappush(Q,(-INF,0,1))
    
    seen = [0]*(N+1)
    while len(Q) > 0:
        mx,cnt,pos = heappop(Q)
        mx = -mx
        
        if seen[pos] != 0:
            continue
        seen[pos] = 1
        
        if pos == N:
            print(mx,cnt)
            exit()
        
        for nx,w in G[pos]:
            if seen[nx] == 0:
                heappush(Q,(-min(mx,w),cnt+1,nx))
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0