結果

問題 No.2387 Yokan Factory
ユーザー miya145592miya145592
提出日時 2023-07-21 23:50:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,849 ms / 5,000 ms
コード長 1,002 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 205,316 KB
最終ジャッジ日時 2024-09-22 01:17:02
合計ジャッジ時間 25,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 44 ms
52,224 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 40 ms
52,608 KB
testcase_14 AC 41 ms
52,608 KB
testcase_15 AC 1,169 ms
151,672 KB
testcase_16 AC 623 ms
135,808 KB
testcase_17 AC 1,612 ms
205,316 KB
testcase_18 AC 2,098 ms
156,456 KB
testcase_19 AC 1,828 ms
135,532 KB
testcase_20 AC 1,381 ms
124,416 KB
testcase_21 AC 2,849 ms
169,424 KB
testcase_22 AC 1,340 ms
120,948 KB
testcase_23 AC 2,096 ms
140,808 KB
testcase_24 AC 824 ms
108,504 KB
testcase_25 AC 1,247 ms
117,120 KB
testcase_26 AC 2,359 ms
154,916 KB
testcase_27 AC 2,650 ms
165,780 KB
testcase_28 AC 127 ms
77,948 KB
testcase_29 AC 155 ms
77,952 KB
testcase_30 AC 145 ms
78,216 KB
testcase_31 AC 142 ms
77,568 KB
testcase_32 AC 109 ms
76,032 KB
testcase_33 AC 98 ms
75,904 KB
testcase_34 AC 148 ms
77,820 KB
testcase_35 AC 129 ms
77,952 KB
testcase_36 AC 94 ms
76,288 KB
testcase_37 AC 40 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

INF = 10 ** 19

def dijkstra(s, N, w): # (始点, ノード数)
    dist = [INF for _ in range(N)]
    hq = [(0, s)]
    dist[s] = 0
    seen = [False] * N # ノードが確定済みかどうか
    while hq:
        d, v = heappop(hq) # ノードを pop する
        if seen[v]:
            continue
        seen[v] = True
        for to, cost, width in G[v]: # ノード v に隣接しているノードに対して
            if width<w:
                continue
            if dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist

N, M, X = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v, a, b = map(int, input().split())
    u-=1
    v-=1
    G[u].append((v, a, b))
    G[v].append((u, a, b))

l = -1
r = 10**9+1
while r-l>1:
    mid = (l+r)//2
    dist = dijkstra(0, N, mid)
    if dist[-1]<=X:
        l = mid
    else:
        r = mid
print(l)
0