結果

問題 No.2677 Minmax Independent Set
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-26 22:30:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 6,558 ms
コンパイル使用メモリ 312,588 KB
実行使用メモリ 25,468 KB
最終ジャッジ日時 2024-06-26 22:30:54
合計ジャッジ時間 15,696 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 180 ms
16,700 KB
testcase_06 AC 177 ms
16,864 KB
testcase_07 AC 185 ms
17,028 KB
testcase_08 AC 186 ms
17,252 KB
testcase_09 AC 186 ms
17,528 KB
testcase_10 AC 160 ms
16,480 KB
testcase_11 AC 138 ms
16,616 KB
testcase_12 AC 209 ms
25,468 KB
testcase_13 AC 195 ms
19,556 KB
testcase_14 AC 194 ms
19,648 KB
testcase_15 AC 206 ms
21,488 KB
testcase_16 AC 236 ms
15,964 KB
testcase_17 AC 205 ms
15,932 KB
testcase_18 AC 111 ms
11,456 KB
testcase_19 AC 145 ms
12,928 KB
testcase_20 AC 43 ms
6,940 KB
testcase_21 AC 165 ms
14,012 KB
testcase_22 AC 13 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 129 ms
16,672 KB
testcase_29 AC 233 ms
21,852 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 3 ms
6,944 KB
testcase_40 AC 4 ms
6,940 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 11 ms
6,944 KB
testcase_43 AC 22 ms
6,940 KB
testcase_44 AC 43 ms
6,940 KB
testcase_45 AC 91 ms
9,472 KB
testcase_46 AC 200 ms
15,692 KB
testcase_47 AC 210 ms
15,756 KB
testcase_48 AC 201 ms
15,888 KB
testcase_49 AC 232 ms
15,864 KB
testcase_50 AC 58 ms
8,380 KB
testcase_51 AC 6 ms
6,940 KB
testcase_52 AC 133 ms
14,336 KB
testcase_53 AC 126 ms
13,392 KB
testcase_54 AC 5 ms
6,944 KB
testcase_55 AC 168 ms
16,536 KB
testcase_56 AC 172 ms
16,460 KB
testcase_57 AC 177 ms
16,572 KB
testcase_58 AC 195 ms
16,540 KB
testcase_59 AC 170 ms
16,664 KB
testcase_60 AC 145 ms
15,932 KB
testcase_61 AC 148 ms
15,928 KB
testcase_62 AC 147 ms
17,628 KB
testcase_63 AC 149 ms
21,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n; vc v(n,vc<int>(0));
  rep(i,n-1){
    int a,b;cin>>a>>b; a--;b--;
    v[a].pb(b);v[b].pb(a);
  }
  vc<pp>dp(n);
  auto f=[&](auto f,int a,int p)->pp{
    pp res={0,1};
    for(auto au:v[a])if(au!=p){
      auto [x,y]=f(f,au,a);
      res.fi+=max(x,y);
      res.se+=x;
    }
    return dp[a]=res;
  };
  f(f,0,-1);
  int ans=n;
  auto ff=[&](auto ff,int a,int p,pp now)->void{
    ans=min(ans,now.se);
    for(auto au:v[a])if(au!=p){
      int da=now.fi-max(dp[au].fi,dp[au].se);
      int db=now.se-dp[au].fi;
      int x=dp[au].fi+max(da,db);
      int y=dp[au].se+da;
      ff(ff,au,a,{x,y});
    }
    return;
  };
  ff(ff,0,-1,dp[0]);
  cout<<ans;
}
    
0