結果

問題 No.1473 おでぶなおばけさん
ユーザー buey_tbuey_t
提出日時 2023-03-26 10:11:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,705 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 108,116 KB
最終ジャッジ日時 2024-09-19 09:30:38
合計ジャッジ時間 22,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
84,992 KB
testcase_01 AC 128 ms
84,992 KB
testcase_02 AC 523 ms
107,468 KB
testcase_03 WA -
testcase_04 AC 385 ms
99,400 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 470 ms
107,172 KB
testcase_08 WA -
testcase_09 AC 473 ms
107,564 KB
testcase_10 AC 312 ms
103,180 KB
testcase_11 WA -
testcase_12 AC 279 ms
97,740 KB
testcase_13 AC 247 ms
95,368 KB
testcase_14 AC 236 ms
94,928 KB
testcase_15 AC 298 ms
102,620 KB
testcase_16 AC 268 ms
100,400 KB
testcase_17 AC 187 ms
90,852 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 541 ms
105,416 KB
testcase_22 AC 538 ms
106,348 KB
testcase_23 AC 455 ms
103,080 KB
testcase_24 AC 516 ms
103,932 KB
testcase_25 AC 550 ms
105,956 KB
testcase_26 AC 425 ms
104,208 KB
testcase_27 AC 381 ms
97,268 KB
testcase_28 AC 435 ms
107,100 KB
testcase_29 AC 384 ms
101,060 KB
testcase_30 AC 437 ms
103,248 KB
testcase_31 AC 547 ms
107,608 KB
testcase_32 WA -
testcase_33 AC 483 ms
103,560 KB
testcase_34 AC 301 ms
96,124 KB
testcase_35 AC 360 ms
97,804 KB
testcase_36 AC 488 ms
102,720 KB
testcase_37 AC 368 ms
101,612 KB
testcase_38 AC 250 ms
92,644 KB
testcase_39 AC 274 ms
99,316 KB
testcase_40 AC 276 ms
100,488 KB
testcase_41 AC 280 ms
104,960 KB
testcase_42 AC 284 ms
104,772 KB
testcase_43 AC 375 ms
108,116 KB
testcase_44 AC 380 ms
108,096 KB
testcase_45 AC 373 ms
107,848 KB
testcase_46 AC 377 ms
100,664 KB
testcase_47 AC 473 ms
103,412 KB
testcase_48 AC 458 ms
102,716 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*(N+1)+N),1))
    
    seen = [0]*(N+1)
    while len(Q) > 0:
        tmp,pos = heappop(Q)
        tmp = -tmp
        mx = tmp//(N+1)
        cnt = tmp%(N+1)-N
        cnt = -cnt
        
        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)*(N+1)+N-(cnt+1)),nx))
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0