結果

問題 No.1639 最小通信路
ユーザー momoyuumomoyuu
提出日時 2022-08-03 01:19:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 77,720 KB
最終ジャッジ日時 2024-07-23 19:32:54
合計ジャッジ時間 4,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 82 ms
77,056 KB
testcase_03 AC 91 ms
77,228 KB
testcase_04 AC 98 ms
77,720 KB
testcase_05 AC 69 ms
71,808 KB
testcase_06 AC 75 ms
74,752 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 82 ms
77,288 KB
testcase_09 AC 42 ms
54,272 KB
testcase_10 AC 54 ms
63,360 KB
testcase_11 AC 72 ms
73,216 KB
testcase_12 AC 61 ms
68,096 KB
testcase_13 AC 79 ms
77,156 KB
testcase_14 AC 39 ms
52,608 KB
testcase_15 AC 58 ms
66,560 KB
testcase_16 AC 78 ms
76,920 KB
testcase_17 AC 80 ms
76,928 KB
testcase_18 AC 40 ms
53,248 KB
testcase_19 AC 73 ms
74,328 KB
testcase_20 AC 80 ms
76,960 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 60 ms
66,560 KB
testcase_23 AC 69 ms
72,448 KB
testcase_24 AC 56 ms
64,512 KB
testcase_25 AC 50 ms
61,696 KB
testcase_26 AC 41 ms
53,504 KB
testcase_27 AC 39 ms
52,480 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 74 ms
74,368 KB
testcase_30 AC 88 ms
77,156 KB
testcase_31 AC 51 ms
60,160 KB
testcase_32 AC 82 ms
76,800 KB
testcase_33 AC 45 ms
59,264 KB
testcase_34 AC 76 ms
75,064 KB
testcase_35 AC 96 ms
77,440 KB
testcase_36 AC 82 ms
76,708 KB
testcase_37 AC 81 ms
77,064 KB
testcase_38 AC 39 ms
52,736 KB
testcase_39 AC 49 ms
61,184 KB
testcase_40 AC 39 ms
53,120 KB
testcase_41 AC 41 ms
53,760 KB
testcase_42 AC 81 ms
77,132 KB
testcase_43 AC 42 ms
54,656 KB
testcase_44 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
abc = [list(map(int,input().split( ))) for _ in range(N*(N-1)//2)]
class unionfind:
    """
    0-index
    数字でやるときはこっちがいいっぽい。
    """
    def __init__(self,n):
        self.n = n
        self.parents = [i for i in range(n)]
    
    def find(self,x):
        if x == self.parents[x]:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
    
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return 
        if y < x:
            x,y = y,x
        self.parents[y] = x

    def same(self,x,y):
        return self.find(x) == self.find(y)
    
u = unionfind(N)

for i in range(N*(N-1)//2):
    a,b,c = abc[i]
    u.union(a-1,b-1)
    p = True
    for j in range(N):
        for k in range(j+1,N):
            if u.same(j,k):
                continue
            p = False
            break
        if not p:
            break
    if p:
        print(c)
        exit()



0