結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 824 ms
119,288 KB
testcase_03 AC 477 ms
117,884 KB
testcase_04 AC 561 ms
99,140 KB
testcase_05 AC 254 ms
82,816 KB
testcase_06 AC 969 ms
112,464 KB
testcase_07 AC 896 ms
115,144 KB
testcase_08 AC 1,411 ms
115,584 KB
testcase_09 AC 689 ms
118,144 KB
testcase_10 AC 228 ms
96,768 KB
testcase_11 AC 299 ms
96,640 KB
testcase_12 AC 221 ms
97,024 KB
testcase_13 AC 168 ms
86,144 KB
testcase_14 AC 148 ms
85,760 KB
testcase_15 AC 239 ms
95,488 KB
testcase_16 AC 202 ms
95,104 KB
testcase_17 AC 99 ms
77,568 KB
testcase_18 AC 109 ms
77,952 KB
testcase_19 AC 282 ms
91,904 KB
testcase_20 AC 424 ms
113,664 KB
testcase_21 AC 598 ms
105,472 KB
testcase_22 AC 304 ms
118,912 KB
testcase_23 AC 279 ms
116,096 KB
testcase_24 AC 275 ms
111,360 KB
testcase_25 AC 594 ms
113,084 KB
testcase_26 AC 338 ms
116,352 KB
testcase_27 AC 196 ms
86,400 KB
testcase_28 AC 651 ms
123,080 KB
testcase_29 AC 462 ms
105,600 KB
testcase_30 AC 594 ms
109,184 KB
testcase_31 AC 606 ms
125,312 KB
testcase_32 AC 611 ms
116,608 KB
testcase_33 AC 347 ms
113,024 KB
testcase_34 AC 195 ms
93,696 KB
testcase_35 AC 254 ms
93,824 KB
testcase_36 AC 647 ms
99,072 KB
testcase_37 AC 302 ms
113,536 KB
testcase_38 AC 114 ms
78,080 KB
testcase_39 AC 197 ms
95,104 KB
testcase_40 AC 208 ms
94,976 KB
testcase_41 AC 215 ms
96,152 KB
testcase_42 AC 210 ms
96,360 KB
testcase_43 AC 277 ms
113,152 KB
testcase_44 AC 277 ms
113,280 KB
testcase_45 AC 272 ms
113,024 KB
testcase_46 AC 514 ms
108,544 KB
testcase_47 AC 509 ms
109,440 KB
testcase_48 AC 635 ms
108,928 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