結果

問題 No.2677 Minmax Independent Set
ユーザー kotatsugamekotatsugame
提出日時 2024-03-15 22:27:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 71,272 KB
実行使用メモリ 30,272 KB
最終ジャッジ日時 2024-09-30 01:52:49
合計ジャッジ時間 5,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,800 KB
testcase_01 AC 3 ms
10,312 KB
testcase_02 AC 4 ms
10,564 KB
testcase_03 AC 3 ms
9,796 KB
testcase_04 AC 2 ms
9,924 KB
testcase_05 AC 77 ms
19,012 KB
testcase_06 AC 76 ms
19,392 KB
testcase_07 AC 82 ms
19,396 KB
testcase_08 AC 88 ms
19,780 KB
testcase_09 AC 84 ms
20,164 KB
testcase_10 AC 63 ms
18,352 KB
testcase_11 AC 64 ms
18,408 KB
testcase_12 AC 91 ms
30,272 KB
testcase_13 AC 92 ms
22,332 KB
testcase_14 AC 89 ms
22,364 KB
testcase_15 AC 97 ms
24,852 KB
testcase_16 AC 93 ms
17,732 KB
testcase_17 AC 91 ms
18,116 KB
testcase_18 AC 51 ms
15,812 KB
testcase_19 AC 65 ms
16,448 KB
testcase_20 AC 21 ms
11,848 KB
testcase_21 AC 71 ms
17,092 KB
testcase_22 AC 9 ms
11,844 KB
testcase_23 AC 3 ms
9,800 KB
testcase_24 AC 4 ms
9,924 KB
testcase_25 AC 2 ms
9,796 KB
testcase_26 AC 4 ms
10,048 KB
testcase_27 AC 4 ms
9,796 KB
testcase_28 AC 55 ms
18,384 KB
testcase_29 AC 90 ms
25,544 KB
testcase_30 AC 3 ms
9,796 KB
testcase_31 AC 4 ms
9,924 KB
testcase_32 AC 4 ms
10,696 KB
testcase_33 AC 3 ms
9,928 KB
testcase_34 AC 3 ms
9,924 KB
testcase_35 AC 4 ms
10,820 KB
testcase_36 AC 3 ms
9,664 KB
testcase_37 AC 3 ms
10,052 KB
testcase_38 AC 3 ms
9,792 KB
testcase_39 AC 4 ms
10,432 KB
testcase_40 AC 4 ms
10,308 KB
testcase_41 AC 5 ms
10,056 KB
testcase_42 AC 8 ms
11,204 KB
testcase_43 AC 12 ms
10,816 KB
testcase_44 AC 21 ms
13,128 KB
testcase_45 AC 40 ms
14,660 KB
testcase_46 AC 84 ms
17,984 KB
testcase_47 AC 86 ms
17,856 KB
testcase_48 AC 97 ms
17,860 KB
testcase_49 AC 85 ms
18,116 KB
testcase_50 AC 24 ms
13,040 KB
testcase_51 AC 5 ms
10,564 KB
testcase_52 AC 55 ms
17,252 KB
testcase_53 AC 50 ms
16,696 KB
testcase_54 AC 4 ms
11,080 KB
testcase_55 AC 66 ms
18,492 KB
testcase_56 AC 69 ms
18,260 KB
testcase_57 AC 67 ms
18,500 KB
testcase_58 AC 66 ms
18,340 KB
testcase_59 AC 70 ms
18,432 KB
testcase_60 AC 58 ms
17,596 KB
testcase_61 AC 63 ms
18,116 KB
testcase_62 AC 62 ms
20,416 KB
testcase_63 AC 66 ms
24,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int N;
vector<int>G[2<<17];
int dp[2<<17][2];
void dfs(int u,int p)
{
	if(p!=-1)
	{
		int i=0;
		while(G[u][i]!=p)i++;
		if(i+1<G[u].size())swap(G[u][i],G[u][G[u].size()-1]);
		G[u].pop_back();
	}
	dp[u][0]=0;
	dp[u][1]=1;
	for(int v:G[u])
	{
		dfs(v,u);
		dp[u][0]+=max(dp[v][0],dp[v][1]);
		dp[u][1]+=dp[v][0];
	}
}
int ans=1e9;
void dfs2(int u,int pdp0,int pdp1)
{
	int now=pdp0;
	dp[u][0]+=max(pdp0,pdp1);
	dp[u][1]+=pdp0;
	for(int v:G[u])
	{
		now+=dp[v][0];
		dfs2(v,dp[u][0]-max(dp[v][0],dp[v][1]),dp[u][1]-dp[v][0]);
	}
	ans=min(ans,now+1);
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	dfs(0,-1);
	dfs2(0,0,0);
	cout<<ans<<endl;
}
0