結果

問題 No.912 赤黒木
ユーザー leaf_1415leaf_1415
提出日時 2019-10-19 01:14:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 332 ms / 3,000 ms
コード長 1,703 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 64,420 KB
実行使用メモリ 62,360 KB
最終ジャッジ日時 2024-06-25 21:04:51
合計ジャッジ時間 9,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
12,800 KB
testcase_01 AC 9 ms
12,800 KB
testcase_02 AC 10 ms
12,672 KB
testcase_03 AC 10 ms
13,056 KB
testcase_04 AC 9 ms
12,928 KB
testcase_05 AC 10 ms
12,800 KB
testcase_06 AC 9 ms
12,928 KB
testcase_07 AC 10 ms
12,928 KB
testcase_08 AC 9 ms
12,800 KB
testcase_09 AC 10 ms
12,800 KB
testcase_10 AC 10 ms
12,800 KB
testcase_11 AC 10 ms
12,800 KB
testcase_12 AC 301 ms
36,096 KB
testcase_13 AC 316 ms
36,736 KB
testcase_14 AC 297 ms
35,200 KB
testcase_15 AC 317 ms
36,864 KB
testcase_16 AC 302 ms
35,968 KB
testcase_17 AC 315 ms
36,224 KB
testcase_18 AC 296 ms
35,328 KB
testcase_19 AC 292 ms
34,944 KB
testcase_20 AC 284 ms
34,688 KB
testcase_21 AC 281 ms
34,560 KB
testcase_22 AC 232 ms
47,116 KB
testcase_23 AC 236 ms
46,988 KB
testcase_24 AC 231 ms
47,112 KB
testcase_25 AC 307 ms
36,224 KB
testcase_26 AC 321 ms
36,864 KB
testcase_27 AC 308 ms
35,712 KB
testcase_28 AC 332 ms
60,928 KB
testcase_29 AC 329 ms
60,672 KB
testcase_30 AC 306 ms
62,360 KB
testcase_31 AC 291 ms
59,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#define llint long long
#define inf 1e18

using namespace std;

typedef pair<llint, llint> P;

llint n;
vector<llint> G[200005], g[200005];
bool odd[200005];
llint dp[200005][2][3];
llint dp2[200005][2][3];

void dfs(int v, int p, llint d)
{
	for(int i = 0; i < G[v].size(); i++){
		if(G[v][i] == p) continue;
		dfs(G[v][i], v, d+1);
	}
	
	for(int i = 0; i <= G[v].size(); i++){
		for(int j = 0; j < 2; j++){
			for(int k = 0; k <= 2; k++){
				dp2[i][j][k] = inf;
			}
		}
	}
	
	if(odd[v]) dp2[0][0][1] = 0, dp2[0][1][0] = d;
	else dp2[0][0][0] = 0;
	
	for(int i = 0; i < G[v].size(); i++){
		if(G[v][i] == p){
			for(int j = 0; j < 2; j++){
				for(int k = 0; k <= 2; k++){
					dp2[i+1][j][k] = dp2[i][j][k];
				}
			}
			continue;
		}
		int u = G[v][i];
		for(int j = 0; j < 2; j++){
			for(int k = 0; k <= 2; k++){
				
				for(int l = 0; l < 2; l++){
					for(int m = 0; m <= 2; m++){
						if(k+m > 2) continue;
						llint cost = 0;
						if(j+l >= 2) cost = 2*d;
						dp2[i+1][(j+l)%2][k+m] = min(dp2[i+1][(j+l)%2][k+m], dp2[i][j][k] + dp[u][l][m] - cost);
					}
				}
			}
		}
	}
	
	for(int j = 0; j < 2; j++){
		for(int k = 0; k <= 2; k++){
			dp[v][j][k] = dp2[(int)G[v].size()][j][k];
		}
	}
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	llint u, v;
	for(int i = 0; i < n-1; i++){
		cin >> u >> v;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	for(int i = 0; i < n-1; i++){
		cin >> u >> v;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	
	for(int i = 1; i <= n; i++){
		if((int)g[i].size() % 2) odd[i] = true;
	}
	
	dfs(1, -1, 0);
	
	cout << dp[1][0][2] + n-1 << endl;
	
	return 0;
}
0