結果

問題 No.2677 Minmax Independent Set
ユーザー kwm_tkwm_t
提出日時 2024-03-17 00:51:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 2,575 bytes
コンパイル時間 3,083 ms
コンパイル使用メモリ 258,564 KB
実行使用メモリ 27,136 KB
最終ジャッジ日時 2024-09-30 04:36:38
合計ジャッジ時間 9,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 120 ms
20,352 KB
testcase_06 AC 118 ms
20,352 KB
testcase_07 AC 118 ms
20,480 KB
testcase_08 AC 116 ms
20,608 KB
testcase_09 AC 115 ms
21,084 KB
testcase_10 AC 91 ms
20,256 KB
testcase_11 AC 92 ms
20,132 KB
testcase_12 AC 141 ms
27,136 KB
testcase_13 AC 147 ms
22,296 KB
testcase_14 AC 123 ms
22,528 KB
testcase_15 AC 150 ms
24,104 KB
testcase_16 AC 144 ms
19,968 KB
testcase_17 AC 147 ms
20,096 KB
testcase_18 AC 79 ms
13,824 KB
testcase_19 AC 100 ms
15,928 KB
testcase_20 AC 27 ms
7,680 KB
testcase_21 AC 112 ms
17,152 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 88 ms
20,308 KB
testcase_29 AC 141 ms
24,064 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
testcase_41 AC 4 ms
5,248 KB
testcase_42 AC 7 ms
5,248 KB
testcase_43 AC 13 ms
5,248 KB
testcase_44 AC 25 ms
7,424 KB
testcase_45 AC 54 ms
11,392 KB
testcase_46 AC 154 ms
19,644 KB
testcase_47 AC 141 ms
20,036 KB
testcase_48 AC 147 ms
19,840 KB
testcase_49 AC 144 ms
19,968 KB
testcase_50 AC 30 ms
9,776 KB
testcase_51 AC 3 ms
5,248 KB
testcase_52 AC 74 ms
17,328 KB
testcase_53 AC 67 ms
16,404 KB
testcase_54 AC 4 ms
5,248 KB
testcase_55 AC 101 ms
20,428 KB
testcase_56 AC 103 ms
20,396 KB
testcase_57 AC 101 ms
20,500 KB
testcase_58 AC 97 ms
20,528 KB
testcase_59 AC 95 ms
20,432 KB
testcase_60 AC 68 ms
19,672 KB
testcase_61 AC 72 ms
20,364 KB
testcase_62 AC 73 ms
21,048 KB
testcase_63 AC 73 ms
24,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint998244353;
//const int mod = 998244353;
//using mint = modint1000000007;
//const int mod = 1000000007;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
#include<vector>
#include<iostream> 
template <typename Cost, typename Data, Data(*merge)(const Data&, const Data&), Data(*mergeR)(const Data&, const Data&), Data(*e)()>
struct ReRooting {
	struct Edge {
		int to;
		Cost cost;
		Edge(int _to, Cost cost = 1) :to(_to), cost(cost) {}
	};
	std::vector<std::vector<Edge>>g;
	std::vector<Data>dp;
	std::vector<Data>ans;
	int sz;
	ReRooting(int _sz) :sz(_sz) {
		g.resize(sz);
		dp.reserve(sz);
		ans.resize(sz);
	}

	void addEdge(int s, int t, Cost c = 1) {
		g[s].emplace_back(t, c);
		g[t].emplace_back(s, c);
	}

	void dfs(int v, int p = -1) {
		dp[v] = e();
		for (Edge &edge : g[v]) {
			if (p == edge.to)continue;
			dfs(edge.to, v);
			dp[v] = merge(dp[v], dp[edge.to]);
		}
	}
	void dfsR(int v, int p = -1) {
		ans[v] = dp[v];
		if (-1 != p)ans[v] = merge(ans[v], dp[p]);
		for (Edge edge : g[v]) {
			if (p == edge.to)continue;
			dp[v] = mergeR(ans[v], dp[edge.to]);
			dfsR(edge.to, v);
		}
	}
	std::vector<Data> solve() {
		dfs(0);
		dfsR(0);
		return ans;
	}
};
using Cost = int;
struct Data {
	int val0 = 0;
	int val1 = 0;
	Data(int val0 = 0, int val1 = 0) :val0(val0), val1(val1) {}
};
Data e() { return Data(0, 1); }
Data merge(const Data &lh, const Data &rh) {
	Data ret = lh;
	ret.val0 += max(rh.val0, rh.val1);
	ret.val1 += rh.val0;
	return ret;
}
Data mergeR(const Data &lh, const Data &rh) {
	Data ret = lh;
	ret.val0 -= max(rh.val0, rh.val1);
	ret.val1 -= rh.val0;
	return ret;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	ReRooting<Cost, Data, merge, mergeR, e> g(n);
	rep(i, n - 1) {
		int u, v; cin >> u >> v;
		u--, v--;
		g.addEdge(u, v);
	}
	auto ret = g.solve();
	int ans = n;
	rep(i, n)chmin(ans, ret[i].val1);
	cout << ans << endl;
	return 0;
}
0