結果

問題 No.2677 Minmax Independent Set
ユーザー suisensuisen
提出日時 2024-03-15 22:12:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,744 KB
実行使用メモリ 129,012 KB
最終ジャッジ日時 2024-09-30 01:32:24
合計ジャッジ時間 23,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,104 KB
testcase_01 AC 37 ms
52,376 KB
testcase_02 AC 37 ms
53,072 KB
testcase_03 AC 38 ms
53,568 KB
testcase_04 AC 38 ms
53,080 KB
testcase_05 AC 565 ms
113,784 KB
testcase_06 AC 559 ms
113,780 KB
testcase_07 AC 567 ms
114,328 KB
testcase_08 AC 570 ms
113,780 KB
testcase_09 AC 559 ms
114,540 KB
testcase_10 AC 540 ms
118,708 KB
testcase_11 AC 513 ms
118,620 KB
testcase_12 AC 570 ms
129,012 KB
testcase_13 AC 633 ms
122,904 KB
testcase_14 AC 631 ms
121,784 KB
testcase_15 AC 680 ms
124,016 KB
testcase_16 AC 764 ms
116,776 KB
testcase_17 AC 757 ms
115,552 KB
testcase_18 AC 495 ms
106,216 KB
testcase_19 AC 578 ms
112,708 KB
testcase_20 AC 230 ms
86,436 KB
testcase_21 AC 629 ms
110,004 KB
testcase_22 AC 133 ms
79,216 KB
testcase_23 AC 59 ms
65,380 KB
testcase_24 AC 41 ms
53,884 KB
testcase_25 AC 39 ms
53,288 KB
testcase_26 AC 41 ms
53,364 KB
testcase_27 AC 55 ms
65,260 KB
testcase_28 AC 435 ms
124,528 KB
testcase_29 AC 594 ms
122,204 KB
testcase_30 AC 37 ms
52,712 KB
testcase_31 AC 36 ms
52,784 KB
testcase_32 AC 38 ms
53,144 KB
testcase_33 AC 38 ms
53,128 KB
testcase_34 AC 38 ms
52,960 KB
testcase_35 AC 38 ms
52,716 KB
testcase_36 AC 41 ms
53,792 KB
testcase_37 AC 45 ms
55,436 KB
testcase_38 AC 61 ms
65,856 KB
testcase_39 AC 92 ms
77,080 KB
testcase_40 AC 115 ms
77,720 KB
testcase_41 AC 114 ms
77,520 KB
testcase_42 AC 123 ms
78,056 KB
testcase_43 AC 150 ms
80,796 KB
testcase_44 AC 225 ms
86,604 KB
testcase_45 AC 375 ms
99,480 KB
testcase_46 AC 702 ms
115,812 KB
testcase_47 AC 738 ms
120,720 KB
testcase_48 AC 733 ms
120,628 KB
testcase_49 AC 733 ms
120,616 KB
testcase_50 AC 207 ms
91,736 KB
testcase_51 AC 92 ms
77,144 KB
testcase_52 AC 406 ms
116,000 KB
testcase_53 AC 359 ms
105,212 KB
testcase_54 AC 92 ms
76,956 KB
testcase_55 AC 558 ms
118,972 KB
testcase_56 AC 528 ms
114,976 KB
testcase_57 AC 566 ms
118,324 KB
testcase_58 AC 566 ms
119,148 KB
testcase_59 AC 576 ms
118,252 KB
testcase_60 AC 339 ms
118,628 KB
testcase_61 AC 294 ms
115,304 KB
testcase_62 AC 305 ms
115,412 KB
testcase_63 AC 274 ms
115,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=[[]for _ in range(n)]
for _ in range(n-1):
 u,v=map(int,input().split());u-=1;v-=1
 g[u]+=[v];g[v]+=[u]
p=[-1]*n
q=[0]
for u in q:
 for v in g[u]:
  if p[u]==v:continue
  p[v]=u;q+=[v]
dp=[(0,0)for _ in range(n)]
for u in q[::-1]:
 u0,u1=0,1
 for v in g[u]:
  if v==p[u]:continue
  v0,v1=dp[v]
  u0+=max(v0,v1)
  u1+=v0
 dp[u]=u0,u1
dp2=dp[:]
for u in q:
 u0,u1=dp2[u]
 for v in g[u]:
  if p[u]==v:continue
  v0,v1=dp[v]
  u0_v=u0-max(v0,v1)
  u1_v=u1-v0
  dp2[v]=(v0+max(u0_v,u1_v),v1+u0_v)
ans=n
for u in range(n):
 ans=min(ans,dp2[u][1])
print(ans)
0