結果

問題 No.2387 Yokan Factory
ユーザー ニックネームニックネーム
提出日時 2023-07-21 21:41:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,800 ms / 5,000 ms
コード長 573 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 188,024 KB
最終ジャッジ日時 2024-09-21 23:07:02
合計ジャッジ時間 24,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 42 ms
52,480 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 42 ms
52,480 KB
testcase_10 AC 43 ms
52,736 KB
testcase_11 AC 43 ms
52,096 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 1,088 ms
133,008 KB
testcase_16 AC 619 ms
126,588 KB
testcase_17 AC 1,510 ms
188,024 KB
testcase_18 AC 2,038 ms
137,852 KB
testcase_19 AC 1,711 ms
121,892 KB
testcase_20 AC 1,348 ms
112,768 KB
testcase_21 AC 2,800 ms
145,636 KB
testcase_22 AC 1,307 ms
110,320 KB
testcase_23 AC 2,005 ms
125,080 KB
testcase_24 AC 779 ms
103,552 KB
testcase_25 AC 1,132 ms
105,216 KB
testcase_26 AC 2,156 ms
134,296 KB
testcase_27 AC 2,569 ms
147,052 KB
testcase_28 AC 135 ms
77,488 KB
testcase_29 AC 159 ms
78,132 KB
testcase_30 AC 144 ms
78,252 KB
testcase_31 AC 136 ms
77,440 KB
testcase_32 AC 110 ms
76,288 KB
testcase_33 AC 107 ms
76,288 KB
testcase_34 AC 157 ms
78,012 KB
testcase_35 AC 133 ms
77,056 KB
testcase_36 AC 99 ms
76,160 KB
testcase_37 AC 43 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n,m,x = map(int,input().split())
adj = [[] for _ in range(n)]
for _ in range(m):
    u,v,a,b = map(int,input().split())
    adj[u-1].append((v-1,a,b))
    adj[v-1].append((u-1,a,b))
ok = -1; ng = 10**9+1
while ng-ok>1:
    mid = (ok+ng)//2
    t = [0]+[10**18+1]*(n-1); f = [False]*n; hq = [(0,0)]
    while hq:
        d,p = heappop(hq)
        if f[p]: continue
        f[p] = True
        for c,a,b in adj[p]:
            if b>=mid and t[c]>d+a: t[c] = d+a; heappush(hq,(t[c],c))
    if t[n-1]<=x: ok = mid
    else: ng = mid
print(ok)
0