結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー ニックネームニックネーム
提出日時 2023-08-04 22:24:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-05-05 01:25:37
合計ジャッジ時間 8,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 338 ms
11,392 KB
testcase_05 AC 619 ms
12,032 KB
testcase_06 AC 633 ms
12,800 KB
testcase_07 AC 410 ms
11,520 KB
testcase_08 AC 468 ms
11,904 KB
testcase_09 AC 686 ms
12,544 KB
testcase_10 AC 682 ms
11,904 KB
testcase_11 AC 532 ms
12,032 KB
testcase_12 AC 695 ms
11,904 KB
testcase_13 AC 488 ms
12,544 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 26 ms
11,008 KB
testcase_19 AC 156 ms
26,624 KB
testcase_20 AC 52 ms
13,824 KB
testcase_21 AC 90 ms
18,944 KB
testcase_22 AC 141 ms
24,704 KB
testcase_23 AC 136 ms
24,320 KB
testcase_24 AC 117 ms
22,144 KB
testcase_25 AC 110 ms
21,248 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 155 ms
25,856 KB
testcase_28 AC 125 ms
22,528 KB
testcase_29 AC 56 ms
13,312 KB
testcase_30 AC 78 ms
17,152 KB
testcase_31 AC 153 ms
25,856 KB
testcase_32 AC 35 ms
11,136 KB
testcase_33 AC 64 ms
15,744 KB
testcase_34 AC 49 ms
12,416 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
n,m = map(int,input().split())
a = [0]*n; b = [0]*n; c = [[] for _ in range(n)]; uf = UF(n)
for _ in range(m):
    u,v = map(int,input().split())
    a[u-1] += 1; b[v-1] += 1; uf.u(u-1,v-1)
for i,(u,v) in enumerate(zip(a,b)):
    if u>v or u==v>0: c[uf.f(i)].append(u-v)
d = e = 0
for i in range(n):
    if c[i]:
        d += sum(c[i])
        if sum(c[i])==0: e += 1
print(d+e-1)
0