結果
問題 | No.2677 Minmax Independent Set |
ユーザー | hitonanode |
提出日時 | 2024-03-15 22:41:05 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 226 ms / 2,000 ms |
コード長 | 3,931 bytes |
コンパイル時間 | 1,392 ms |
コンパイル使用メモリ | 104,332 KB |
実行使用メモリ | 37,804 KB |
最終ジャッジ日時 | 2024-09-30 02:09:02 |
合計ジャッジ時間 | 9,536 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 195 ms
34,320 KB |
testcase_06 | AC | 200 ms
34,268 KB |
testcase_07 | AC | 201 ms
34,268 KB |
testcase_08 | AC | 203 ms
34,396 KB |
testcase_09 | AC | 198 ms
34,264 KB |
testcase_10 | AC | 152 ms
37,260 KB |
testcase_11 | AC | 152 ms
37,124 KB |
testcase_12 | AC | 147 ms
33,016 KB |
testcase_13 | AC | 196 ms
34,592 KB |
testcase_14 | AC | 184 ms
36,256 KB |
testcase_15 | AC | 196 ms
34,448 KB |
testcase_16 | AC | 207 ms
34,892 KB |
testcase_17 | AC | 215 ms
34,888 KB |
testcase_18 | AC | 114 ms
23,228 KB |
testcase_19 | AC | 140 ms
27,292 KB |
testcase_20 | AC | 38 ms
11,688 KB |
testcase_21 | AC | 167 ms
29,852 KB |
testcase_22 | AC | 10 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 144 ms
37,804 KB |
testcase_29 | AC | 214 ms
33,000 KB |
testcase_30 | AC | 2 ms
6,820 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 2 ms
6,816 KB |
testcase_33 | AC | 2 ms
6,820 KB |
testcase_34 | AC | 2 ms
6,820 KB |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,816 KB |
testcase_38 | AC | 2 ms
6,820 KB |
testcase_39 | AC | 3 ms
6,816 KB |
testcase_40 | AC | 4 ms
6,816 KB |
testcase_41 | AC | 5 ms
6,816 KB |
testcase_42 | AC | 9 ms
6,820 KB |
testcase_43 | AC | 18 ms
7,040 KB |
testcase_44 | AC | 35 ms
10,784 KB |
testcase_45 | AC | 88 ms
18,556 KB |
testcase_46 | AC | 217 ms
33,944 KB |
testcase_47 | AC | 218 ms
34,360 KB |
testcase_48 | AC | 226 ms
34,232 KB |
testcase_49 | AC | 217 ms
34,228 KB |
testcase_50 | AC | 50 ms
16,312 KB |
testcase_51 | AC | 5 ms
6,816 KB |
testcase_52 | AC | 123 ms
31,992 KB |
testcase_53 | AC | 110 ms
29,880 KB |
testcase_54 | AC | 4 ms
6,820 KB |
testcase_55 | AC | 162 ms
36,212 KB |
testcase_56 | AC | 167 ms
37,068 KB |
testcase_57 | AC | 164 ms
36,060 KB |
testcase_58 | AC | 159 ms
36,180 KB |
testcase_59 | AC | 160 ms
36,956 KB |
testcase_60 | AC | 97 ms
34,196 KB |
testcase_61 | AC | 95 ms
35,112 KB |
testcase_62 | AC | 91 ms
34,316 KB |
testcase_63 | AC | 92 ms
35,100 KB |
ソースコード
#include <iostream> #include <utility> #include <vector> using namespace std; #define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++) #define REP(i, n) FOR(i,0,n) #include <cassert> #include <cstdlib> #include <utility> #include <vector> // Rerooting // Reference: // - https://atcoder.jp/contests/abc222/editorial/2749 // - https://null-mn.hatenablog.com/entry/2020/04/14/124151 template <class Edge, class St, class Ch, Ch (*merge)(Ch, Ch), Ch (*f)(St, int, Edge), St (*g)(Ch, int), Ch (*e)()> struct rerooting { int n_; std::vector<int> par, visited; std::vector<std::vector<std::pair<int, Edge>>> to; std::vector<St> dp_subtree; std::vector<St> dp_par; std::vector<St> dpall; rerooting(const std::vector<std::vector<std::pair<int, Edge>>> &to_) : n_(to_.size()), par(n_, -1), visited(n_, 0), to(to_) { for (int i = 0; i < n_; ++i) dp_subtree.push_back(g(e(), i)); dp_par = dpall = dp_subtree; } void run_connected(int root) { if (visited[root]) return; visited[root] = 1; std::vector<int> visorder{root}; for (int t = 0; t < int(visorder.size()); ++t) { int now = visorder[t]; for (const auto &edge : to[now]) { int nxt = edge.first; if (visited[nxt]) continue; visorder.push_back(nxt); visited[nxt] = 1; par[nxt] = now; } } for (int t = int(visorder.size()) - 1; t >= 0; --t) { int now = visorder[t]; Ch ch = e(); for (const auto &edge : to[now]) { int nxt = edge.first; if (nxt == par[now]) continue; ch = merge(ch, f(dp_subtree[nxt], nxt, edge.second)); } dp_subtree[now] = g(ch, now); } std::vector<Ch> left; for (int now : visorder) { int m = int(to[now].size()); left.assign(m + 1, e()); for (int j = 0; j < m; j++) { int nxt = to[now][j].first; const St &st = (nxt == par[now] ? dp_par[now] : dp_subtree[nxt]); left[j + 1] = merge(left[j], f(st, nxt, to[now][j].second)); } dpall[now] = g(left.back(), now); Ch rprod = e(); for (int j = m - 1; j >= 0; --j) { int nxt = to[now][j].first; if (nxt != par[now]) dp_par[nxt] = g(merge(left[j], rprod), now); const St &st = (nxt == par[now] ? dp_par[now] : dp_subtree[nxt]); rprod = merge(f(st, nxt, to[now][j].second), rprod); } } } void run() { for (int i = 0; i < n_; ++i) { if (!visited[i]) run_connected(i); } } const St &get_subtree(int root_, int par_) const { if (par_ < 0) return dpall.at(root_); if (par.at(root_) == par_) return dp_subtree.at(root_); if (par.at(par_) == root_) return dp_par.at(par_); std::exit(1); } }; using Subtree = pair<int, int>; // (塗った、塗らない) using Child = pair<int, int>; struct Edge {}; Child e() { return {0, 0}; } Child merge(Child x, Child y) { return {max(x.first, x.second) + max(y.first, y.second), x.second + y.second}; } Child f(Subtree x, int, Edge) { return x; } Subtree g(Child x, int) { return {1 + x.second, max(x.first, x.second)}; } int main() { cin.tie(nullptr), ios::sync_with_stdio(false); int N; cin >> N; vector<vector<pair<int, Edge>>> to(N); REP(e, N - 1) { int a, b; cin >> a >> b; --a, --b; to.at(a).emplace_back(b, Edge{}); to.at(b).emplace_back(a, Edge{}); } rerooting<Edge, Subtree, Child, merge, f, g, e> tree(to); tree.run(); int ret = N; REP(i, N) ret = min(ret, tree.dpall.at(i).first); cout << ret << '\n'; }