結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,008 KB
testcase_01 AC 26 ms
11,008 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 333 ms
11,520 KB
testcase_05 AC 604 ms
12,160 KB
testcase_06 AC 653 ms
12,928 KB
testcase_07 AC 391 ms
11,520 KB
testcase_08 AC 456 ms
12,032 KB
testcase_09 AC 683 ms
12,544 KB
testcase_10 AC 672 ms
11,904 KB
testcase_11 AC 505 ms
12,032 KB
testcase_12 AC 683 ms
12,032 KB
testcase_13 AC 480 ms
12,544 KB
testcase_14 AC 26 ms
11,008 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 25 ms
11,008 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 26 ms
11,008 KB
testcase_19 AC 145 ms
26,752 KB
testcase_20 AC 49 ms
13,952 KB
testcase_21 AC 82 ms
19,072 KB
testcase_22 AC 134 ms
24,832 KB
testcase_23 AC 135 ms
24,448 KB
testcase_24 AC 115 ms
22,144 KB
testcase_25 AC 106 ms
21,376 KB
testcase_26 AC 28 ms
10,880 KB
testcase_27 AC 149 ms
25,856 KB
testcase_28 AC 123 ms
22,656 KB
testcase_29 AC 51 ms
13,440 KB
testcase_30 AC 73 ms
17,152 KB
testcase_31 AC 151 ms
25,984 KB
testcase_32 AC 34 ms
11,264 KB
testcase_33 AC 61 ms
15,616 KB
testcase_34 AC 46 ms
12,544 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 = p = q = 0
for i in range(n):
    if c[i]:
        d += sum(c[i]); p += 1
        if sum(c[i])==0: q += 1
print(d+q-1)
0