結果

問題 No.1473 おでぶなおばけさん
ユーザー stngstng
提出日時 2021-08-29 13:59:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,314 ms / 2,000 ms
コード長 1,357 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 125,244 KB
最終ジャッジ日時 2024-05-01 22:18:59
合計ジャッジ時間 21,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,376 KB
testcase_01 AC 43 ms
54,460 KB
testcase_02 AC 781 ms
119,548 KB
testcase_03 AC 446 ms
117,984 KB
testcase_04 AC 465 ms
99,396 KB
testcase_05 AC 230 ms
82,728 KB
testcase_06 AC 893 ms
112,428 KB
testcase_07 AC 829 ms
114,972 KB
testcase_08 AC 1,314 ms
115,728 KB
testcase_09 AC 639 ms
118,188 KB
testcase_10 AC 207 ms
96,832 KB
testcase_11 AC 270 ms
96,644 KB
testcase_12 AC 190 ms
96,976 KB
testcase_13 AC 148 ms
86,472 KB
testcase_14 AC 130 ms
85,732 KB
testcase_15 AC 223 ms
95,920 KB
testcase_16 AC 223 ms
95,108 KB
testcase_17 AC 85 ms
77,744 KB
testcase_18 AC 96 ms
77,644 KB
testcase_19 AC 252 ms
92,072 KB
testcase_20 AC 386 ms
113,780 KB
testcase_21 AC 553 ms
105,424 KB
testcase_22 AC 285 ms
119,232 KB
testcase_23 AC 257 ms
115,948 KB
testcase_24 AC 244 ms
111,556 KB
testcase_25 AC 526 ms
112,836 KB
testcase_26 AC 306 ms
116,736 KB
testcase_27 AC 175 ms
86,500 KB
testcase_28 AC 604 ms
123,200 KB
testcase_29 AC 404 ms
105,624 KB
testcase_30 AC 513 ms
109,500 KB
testcase_31 AC 567 ms
125,244 KB
testcase_32 AC 541 ms
116,356 KB
testcase_33 AC 316 ms
112,652 KB
testcase_34 AC 176 ms
94,000 KB
testcase_35 AC 227 ms
93,688 KB
testcase_36 AC 555 ms
98,740 KB
testcase_37 AC 269 ms
113,624 KB
testcase_38 AC 102 ms
78,024 KB
testcase_39 AC 176 ms
94,892 KB
testcase_40 AC 189 ms
94,992 KB
testcase_41 AC 194 ms
96,464 KB
testcase_42 AC 193 ms
96,232 KB
testcase_43 AC 260 ms
113,260 KB
testcase_44 AC 258 ms
112,724 KB
testcase_45 AC 256 ms
112,784 KB
testcase_46 AC 504 ms
108,496 KB
testcase_47 AC 465 ms
109,568 KB
testcase_48 AC 595 ms
109,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m = map(int,input().split())
st = [[] for i in range(n)]

for i in range(m):
    s,t,d = map(int,input().split())
    s -= 1
    t -= 1
    st[s].append([t,d])
    st[t].append([s,d])
    
wa = 10**10#敢えて-1している(ダメな方)
ac = 1#OKな方

while ac+1 < wa:
    tmp = 0
    mid = (wa + ac) //2
    #print(mid)
    
    #判定書く
    chk = [0]*(n)
    d = deque()
    d.append(0)
    f = False
    
    while len(d):
        if f == True:
            break
        tmp = d.popleft()
        for i in st[tmp]:
            t = i[0]
            dt = i[1]
            if chk[t] == 0 and dt >= mid:
                if t == n-1:
                    f = True
                    #print(mid,f,"fff")
                    break
                chk[t] = 1
                d.append(t)
    
    if f == True:
        ac = mid
    else:
        wa = mid
        
#print(ac)

chk = [-1]*(n)
d = deque()
d.append(0)
f = False
chk[0] = 0

while len(d):
    if f == True:
        break
    tmp = d.popleft()
    for i in st[tmp]:
        t = i[0]
        dt = i[1]
        if chk[t] == -1 and dt >= ac:
            if t == n-1:
                f = True
                chk[t] = chk[tmp]+1
                #print(mid,f,"fff")
                break
            chk[t] = chk[tmp]+1
            d.append(t)
print(ac,chk[n-1])
0