結果
| 問題 | No.3514 Majority Driven Tree |
| コンテスト | |
| ユーザー |
T1610
|
| 提出日時 | 2026-04-26 15:14:18 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,953 bytes |
| 記録 | |
| コンパイル時間 | 4,159 ms |
| コンパイル使用メモリ | 378,816 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-26 15:14:27 |
| 合計ジャッジ時間 | 6,865 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | WA * 38 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) REP(i, 0, n)
#define REP(i, s, e) for (ll i = (s); i < (ll)(e); i++)
#define repr(i, n) REPR(i, n, 0)
#define REPR(i, s, e) for (ll i = (ll)(s - 1); i >= (ll)(e); i--)
#define all(r) r.begin(), r.end()
#define rall(r) r.rbegin(), r.rend()
using ll = long long;
using vi = vector<int>;
using vl = vector<ll>;
template <typename T, typename U>
bool chmax(T& a, const U& b) {
if (a >= b) return false;
a = b;
return true;
}
template <typename T, typename U>
bool chmin(T& a, const U& b) {
if (a <= b) return false;
a = b;
return true;
}
void yes_no(bool f, string yes = "Yes", string no = "No") { cout << (f ? yes : no) << "\n"; }
void solve() {
int n;
cin >> n;
vector<vi> es(n);
vi deg(n);
rep(i, n - 1) {
int a, b;
cin >> a >> b;
--a;
--b;
es[a].emplace_back(b);
es[b].emplace_back(a);
deg[a]++;
deg[b]++;
}
vi vis(n);
using P = pair<int, int>;
segtree<P, [](P a, P b) { return max(a, b); }, []() { return P{-1, -1}; }> seg(n);
rep(i, n) {
seg.set(i, P((deg[i] + 1) / 2, i));
}
auto dfs = [&](auto self, int cur, int par) -> void {
if (vis[cur]) return;
vis[cur] = 1;
for (auto&& to : es[cur])
if (to != par && !vis[to]) {
auto [x, _] = seg.get(to);
seg.set(to, P(x - 1, _));
if (x - 1 == 0) {
self(self, to, cur);
}
}
};
int ans = 0;
while (1) {
auto [x, i] = seg.all_prod();
if (x == 0) break;
++ans;
seg.set(i, P(0, 0));
dfs(dfs, i, -1);
}
cout << ans << "\n";
}
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int t = 1;
// cin >> t;
rep(ti, t) solve();
return 0;
}
T1610