結果

問題 No.2642 Don't cut line!
ユーザー t98slidert98slider
提出日時 2024-03-13 02:11:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 4,000 ms
コード長 1,229 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-09-29 22:33:24
合計ジャッジ時間 13,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 448 ms
91,904 KB
testcase_02 AC 432 ms
91,904 KB
testcase_03 AC 439 ms
92,032 KB
testcase_04 AC 439 ms
92,160 KB
testcase_05 AC 419 ms
91,836 KB
testcase_06 AC 377 ms
89,728 KB
testcase_07 AC 388 ms
89,600 KB
testcase_08 AC 380 ms
89,216 KB
testcase_09 AC 382 ms
89,344 KB
testcase_10 AC 384 ms
90,164 KB
testcase_11 AC 381 ms
89,344 KB
testcase_12 AC 391 ms
90,496 KB
testcase_13 AC 364 ms
90,368 KB
testcase_14 AC 370 ms
89,472 KB
testcase_15 AC 370 ms
90,240 KB
testcase_16 AC 353 ms
91,716 KB
testcase_17 AC 367 ms
89,856 KB
testcase_18 AC 402 ms
90,880 KB
testcase_19 AC 306 ms
86,968 KB
testcase_20 AC 311 ms
86,400 KB
testcase_21 AC 317 ms
88,496 KB
testcase_22 AC 279 ms
87,168 KB
testcase_23 AC 387 ms
91,628 KB
testcase_24 AC 239 ms
84,352 KB
testcase_25 AC 263 ms
84,992 KB
testcase_26 AC 360 ms
88,868 KB
testcase_27 AC 267 ms
85,760 KB
testcase_28 AC 363 ms
90,404 KB
testcase_29 AC 331 ms
87,296 KB
testcase_30 AC 283 ms
85,632 KB
testcase_31 AC 314 ms
88,232 KB
testcase_32 AC 311 ms
86,272 KB
testcase_33 AC 34 ms
51,968 KB
testcase_34 AC 34 ms
52,096 KB
testcase_35 AC 33 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

class UnionFind():
    def __init__(self, n):
        self.parent_or_size = [-1] * n
        self.weight = [1 << 30] * n
    def leader(self, x):
        while self.parent_or_size[x] >= 0: x = self.parent_or_size[x]
        return x
    def merge(self, x, y, w):
        rx, ry = self.leader(x), self.leader(y)
        if rx == ry: return False
        if self.parent_or_size[rx] > self.parent_or_size[ry]: rx, ry = ry, rx
        self.parent_or_size[rx] += self.parent_or_size[ry]
        self.parent_or_size[ry] = rx
        self.weight[ry] = w
        return True
    def dist(self, x, y):
        ans = 0
        while x != y:
            if self.weight[x] > self.weight[y]: x, y = y, x
            ans = self.weight[x]
            x = self.parent_or_size[x]
        return ans

N, K, C = map(int, stdin.readline().split())
c, ans = 0, 0
uf = UnionFind(N)
E = [[] for _ in range(K)]
for i in range(K):
    u, v, w, p = map(int, stdin.readline().split())
    E[i] = [w, u - 1, v - 1, p]
E.sort()
for w, u, v, p in E:
    if uf.merge(u, v, w):
        c += w
        N -= 1
if N != 1 or c > C:
    print(-1)
    exit(0)
for w, u, v, p in E:
    if c - uf.dist(u, v) + w <= C: ans = max(ans, p)
print(ans)
0