結果

問題 No.1473 おでぶなおばけさん
ユーザー moharan627moharan627
提出日時 2021-04-09 22:32:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,407 ms / 2,000 ms
コード長 2,399 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,440 KB
最終ジャッジ日時 2024-06-25 06:09:57
合計ジャッジ時間 23,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,400 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 1,003 ms
117,552 KB
testcase_03 AC 500 ms
118,088 KB
testcase_04 AC 632 ms
97,628 KB
testcase_05 AC 230 ms
80,256 KB
testcase_06 AC 882 ms
107,580 KB
testcase_07 AC 782 ms
117,444 KB
testcase_08 AC 1,295 ms
112,060 KB
testcase_09 AC 713 ms
124,740 KB
testcase_10 AC 210 ms
83,072 KB
testcase_11 AC 242 ms
83,200 KB
testcase_12 AC 173 ms
83,328 KB
testcase_13 AC 159 ms
79,744 KB
testcase_14 AC 117 ms
79,744 KB
testcase_15 AC 208 ms
82,816 KB
testcase_16 AC 151 ms
82,176 KB
testcase_17 AC 84 ms
73,856 KB
testcase_18 AC 99 ms
77,184 KB
testcase_19 AC 236 ms
84,992 KB
testcase_20 AC 416 ms
116,224 KB
testcase_21 AC 491 ms
100,608 KB
testcase_22 AC 304 ms
139,904 KB
testcase_23 AC 284 ms
140,032 KB
testcase_24 AC 269 ms
130,176 KB
testcase_25 AC 1,407 ms
107,404 KB
testcase_26 AC 1,330 ms
105,964 KB
testcase_27 AC 306 ms
82,560 KB
testcase_28 AC 1,074 ms
114,316 KB
testcase_29 AC 537 ms
100,352 KB
testcase_30 AC 792 ms
105,856 KB
testcase_31 AC 667 ms
141,440 KB
testcase_32 AC 581 ms
117,248 KB
testcase_33 AC 493 ms
110,208 KB
testcase_34 AC 296 ms
96,128 KB
testcase_35 AC 237 ms
98,816 KB
testcase_36 AC 438 ms
96,512 KB
testcase_37 AC 733 ms
106,044 KB
testcase_38 AC 153 ms
78,720 KB
testcase_39 AC 153 ms
82,176 KB
testcase_40 AC 153 ms
82,432 KB
testcase_41 AC 209 ms
87,484 KB
testcase_42 AC 147 ms
87,864 KB
testcase_43 AC 234 ms
109,056 KB
testcase_44 AC 234 ms
109,440 KB
testcase_45 AC 231 ms
109,184 KB
testcase_46 AC 389 ms
107,752 KB
testcase_47 AC 477 ms
118,272 KB
testcase_48 AC 489 ms
119,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LC(): return list(input())
def IC(): return [int(c) for c in input()]
def MI(): return map(int, sys.stdin.readline().split())
INF = float('inf')
MOD = 10**9 + 7
def solve():
    N,M = MI()
    Graph = [[] for i in range(N+1)]
    for m in range(M):
        S,T,D = MI()
        Graph[S].append((T,D))
        Graph[T].append((S, D))
    from collections import deque
    def is_ok(arg):
        Q = deque()
        Seen = [False for i in range(N + 1)]
        Dist = [INF for i in range(N+1)]
        Dist[1] = 0
        s = 1
        Seen[s] = True
        Q.append(s)
        #始点をキューに入れる
        while len(Q) > 0:
            now = Q.popleft()
            #隣接グラフGraphの場合
            for next,weight in Graph[now]:
                if(weight<arg):
                    continue
                if(Seen[next] == False):#未探索ならば
                    Seen[next] = True
                    Q.append(next)
                #始点からの距離とかの計算はここで
                Dist[next] = min(Dist[now]+1,Dist[next])
        if(Dist[N] == INF):
            return False
        else:
            return True
    def meguru_bisect(ng, ok):
        """
        負の無限~(目的値)が条件を満たす場合
        ng…条件を満たさない値の範囲での最小値
        ok…条件を満たす値の範囲での最大値
        """
        while (abs(ok - ng) > 1):
            mid = (ok + ng) // 2
            if is_ok(mid):
                ok = mid
            else:
                ng = mid
        return ok
    W = meguru_bisect(10**9 + 1, 1)
    Q = deque()
    Seen = [False for i in range(N + 1)]
    Dist = [INF for i in range(N + 1)]
    Dist[1] = 0
    s = 1
    Seen[s] = True
    Q.append(s)
    # 始点をキューに入れる
    while len(Q) > 0:
        now = Q.popleft()
        # 隣接グラフGraphの場合
        for next, weight in Graph[now]:
            if (weight < W):
                continue
            if (Seen[next] == False):  # 未探索ならば
                Seen[next] = True
                Q.append(next)
            # 始点からの距離とかの計算はここで
            Dist[next] = min(Dist[now] + 1, Dist[next])
    print(W,Dist[N])
    return
solve()
0