結果

問題 No.2387 Yokan Factory
ユーザー 👑 rin204rin204
提出日時 2024-04-07 15:01:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,160 ms / 5,000 ms
コード長 871 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 128,012 KB
最終ジャッジ日時 2024-10-01 04:30:55
合計ジャッジ時間 12,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,496 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 40 ms
53,196 KB
testcase_03 AC 40 ms
53,684 KB
testcase_04 AC 40 ms
53,688 KB
testcase_05 AC 43 ms
53,940 KB
testcase_06 AC 40 ms
53,316 KB
testcase_07 AC 39 ms
53,320 KB
testcase_08 AC 40 ms
52,612 KB
testcase_09 AC 40 ms
54,336 KB
testcase_10 AC 39 ms
53,692 KB
testcase_11 AC 40 ms
52,640 KB
testcase_12 AC 39 ms
53,384 KB
testcase_13 AC 40 ms
53,056 KB
testcase_14 AC 39 ms
53,880 KB
testcase_15 AC 836 ms
116,920 KB
testcase_16 AC 652 ms
122,116 KB
testcase_17 AC 963 ms
128,012 KB
testcase_18 AC 1,160 ms
116,960 KB
testcase_19 AC 663 ms
105,068 KB
testcase_20 AC 453 ms
102,512 KB
testcase_21 AC 1,139 ms
114,848 KB
testcase_22 AC 463 ms
100,268 KB
testcase_23 AC 983 ms
104,776 KB
testcase_24 AC 399 ms
102,236 KB
testcase_25 AC 354 ms
92,160 KB
testcase_26 AC 521 ms
109,700 KB
testcase_27 AC 377 ms
113,068 KB
testcase_28 AC 84 ms
77,188 KB
testcase_29 AC 73 ms
73,016 KB
testcase_30 AC 96 ms
76,956 KB
testcase_31 AC 99 ms
76,736 KB
testcase_32 AC 73 ms
73,896 KB
testcase_33 AC 78 ms
72,188 KB
testcase_34 AC 126 ms
77,636 KB
testcase_35 AC 104 ms
76,968 KB
testcase_36 AC 49 ms
56,228 KB
testcase_37 AC 41 ms
53,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

n, m, T = map(int, input().split())

B = [-1]
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v, a, b = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append((v, a, b))
    edges[v].append((u, a, b))
    B.append(b)


def ok(x):
    dist = [T + 1] * n
    dist[0] = 0
    hq = [0]
    while hq:
        tmp = heappop(hq)
        d = tmp // n
        pos = tmp - d * n
        if dist[pos] < d:
            continue
        for npos, a, b in edges[pos]:
            if b < x:
                continue
            nd = d + a
            if nd < dist[npos]:
                dist[npos] = nd
                heappush(hq, nd * n + npos)
    return dist[n - 1] <= T


B = sorted(set(B))
l = 0
r = len(B)
while r - l > 1:
    mid = (l + r) // 2
    if ok(B[mid]):
        l = mid
    else:
        r = mid

print(B[l])
0