結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー timitimi
提出日時 2024-02-28 13:27:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 122,760 KB
最終ジャッジ日時 2024-09-29 12:19:52
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,192 KB
testcase_01 AC 35 ms
52,792 KB
testcase_02 AC 34 ms
52,532 KB
testcase_03 AC 34 ms
53,740 KB
testcase_04 AC 156 ms
81,300 KB
testcase_05 AC 226 ms
86,036 KB
testcase_06 AC 249 ms
87,772 KB
testcase_07 AC 168 ms
83,544 KB
testcase_08 AC 205 ms
83,956 KB
testcase_09 AC 248 ms
88,904 KB
testcase_10 AC 245 ms
87,980 KB
testcase_11 AC 226 ms
84,820 KB
testcase_12 AC 256 ms
89,216 KB
testcase_13 AC 211 ms
84,068 KB
testcase_14 AC 36 ms
52,612 KB
testcase_15 AC 37 ms
52,436 KB
testcase_16 AC 35 ms
52,692 KB
testcase_17 AC 36 ms
53,808 KB
testcase_18 AC 37 ms
52,384 KB
testcase_19 AC 118 ms
122,760 KB
testcase_20 AC 57 ms
71,416 KB
testcase_21 AC 71 ms
88,764 KB
testcase_22 AC 111 ms
121,532 KB
testcase_23 AC 108 ms
118,632 KB
testcase_24 AC 106 ms
112,368 KB
testcase_25 AC 75 ms
94,324 KB
testcase_26 AC 44 ms
59,912 KB
testcase_27 AC 128 ms
109,208 KB
testcase_28 AC 127 ms
102,360 KB
testcase_29 AC 93 ms
81,188 KB
testcase_30 AC 95 ms
95,812 KB
testcase_31 AC 127 ms
108,984 KB
testcase_32 AC 88 ms
77,128 KB
testcase_33 AC 73 ms
82,516 KB
testcase_34 AC 93 ms
79,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
par=[i for i in range(N)]
E=[0]*N;F=[0]*N
rank=[0]*(N)
friend=[0]*N
block=[0]*N
size=[1]*N
def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]
 
#同じ集合か判定
def same(x,y):
  return find(x)==find(y)
 
def union(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 
  if rank[x]>rank[y]:
    par[y]=x
    size[x]+=size[y]
  else:
    par[x]=y
    size[y]+=size[x]
    if rank[x]==rank[y]:
      rank[y]+=1
 
A=[]
for i in range(M):
  a,b=map(int,input().split())
  a-=1; b-=1
  E[a]+=1;F[b]+=1
  A.append((a,b))
  union(a,b)

D={}
for i in range(N):
  d=find(i)
  if d not in D:
    D[d]=[]
  D[d].append(i)
ans=0
for d in D:
  p,q=0,0
  for i in D[d]:
    if E[i]>F[i]:
      p+=E[i]-F[i]
    else:
      q+=F[i]-E[i]
  if p>1:
    ans+=p-1
G={} 
for a,b in A:
  d=find(a)
  if d not in G:
    G[d]=1
print(ans+len(G)-1)
0