結果

問題 No.2642 Don't cut line!
ユーザー ニックネームニックネーム
提出日時 2024-02-19 23:10:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 851 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-29 02:50:52
合計ジャッジ時間 19,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,524 KB
testcase_01 AC 700 ms
106,988 KB
testcase_02 AC 706 ms
107,372 KB
testcase_03 AC 711 ms
107,492 KB
testcase_04 AC 712 ms
107,492 KB
testcase_05 AC 710 ms
107,748 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 404 ms
91,224 KB
testcase_09 AC 397 ms
91,488 KB
testcase_10 AC 406 ms
91,460 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 391 ms
91,612 KB
testcase_14 WA -
testcase_15 AC 412 ms
91,484 KB
testcase_16 AC 696 ms
107,776 KB
testcase_17 AC 620 ms
103,232 KB
testcase_18 AC 668 ms
105,416 KB
testcase_19 AC 529 ms
98,384 KB
testcase_20 AC 482 ms
93,040 KB
testcase_21 AC 479 ms
93,036 KB
testcase_22 AC 552 ms
99,456 KB
testcase_23 AC 694 ms
107,384 KB
testcase_24 AC 448 ms
92,036 KB
testcase_25 AC 458 ms
92,344 KB
testcase_26 WA -
testcase_27 AC 491 ms
96,876 KB
testcase_28 AC 641 ms
103,808 KB
testcase_29 WA -
testcase_30 AC 471 ms
93,220 KB
testcase_31 AC 583 ms
100,396 KB
testcase_32 AC 481 ms
92,592 KB
testcase_33 AC 38 ms
52,852 KB
testcase_34 AC 37 ms
54,000 KB
testcase_35 AC 37 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self,n):
        self.p = [-1]*n
    def f(self,x):
        if self.p[x]<0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self,x,y):
        x = self.f(x); y = self.f(y)
        if x==y: return
        if -self.p[x]<-self.p[y]: x,y = y,x
        self.p[x] += self.p[y]; self.p[y] = x
    def s(self,x,y): return self.f(x) == self.f(y)
n,k,c = map(int,input().split())
wpuv = []
for _ in range(k):
    u,v,w,p = map(int,input().split())
    wpuv.append((w,p,u-1,v-1))
uf = UF(n); adj = [[] for _ in range(n)]; d = m = 0
for w,p,u,v in sorted(wpuv):
    if not uf.s(u,v):
        uf.u(u,v); d += w; m = max(m,p)
        adj[u-1].append(w); adj[v-1].append(w)
e = [max(adj[i]) for i in range(n)]
if d>c: exit(print(-1))
for w,p,u,v in wpuv:
    if d-max(e[u],e[v])+w<=c: m = max(m,p)
print(m)
0