結果
問題 | No.1752 Up-Down Tree |
ユーザー | lgswdn |
提出日時 | 2024-03-06 23:12:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 1,883 bytes |
コンパイル時間 | 2,272 ms |
コンパイル使用メモリ | 207,292 KB |
実行使用メモリ | 23,204 KB |
最終ジャッジ日時 | 2024-09-29 18:37:31 |
合計ジャッジ時間 | 3,878 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
23,204 KB |
testcase_01 | AC | 43 ms
23,072 KB |
testcase_02 | AC | 30 ms
15,904 KB |
testcase_03 | AC | 36 ms
15,784 KB |
testcase_04 | AC | 46 ms
19,360 KB |
testcase_05 | AC | 42 ms
20,696 KB |
testcase_06 | AC | 47 ms
18,364 KB |
testcase_07 | AC | 44 ms
18,368 KB |
testcase_08 | AC | 25 ms
12,192 KB |
testcase_09 | AC | 47 ms
15,044 KB |
testcase_10 | AC | 4 ms
9,156 KB |
testcase_11 | AC | 4 ms
9,124 KB |
testcase_12 | AC | 4 ms
9,024 KB |
testcase_13 | AC | 19 ms
11,424 KB |
testcase_14 | AC | 23 ms
11,972 KB |
testcase_15 | AC | 7 ms
9,760 KB |
testcase_16 | AC | 25 ms
11,844 KB |
testcase_17 | AC | 21 ms
11,172 KB |
testcase_18 | AC | 49 ms
14,500 KB |
testcase_19 | AC | 47 ms
14,404 KB |
testcase_20 | AC | 4 ms
9,124 KB |
testcase_21 | AC | 4 ms
9,032 KB |
ソースコード
//Shirasu Azusa 2024.03 #include <bits/stdc++.h> #define fi first #define se second #define eb emplace_back #define mp make_pair using namespace std; typedef long double ld; typedef long long ll; typedef unsigned long long ull; typedef __int128 i128; template<typename T,typename U> T ceil(T x, U y) {return (x>0?(x+y-1)/y:x/y);} template<typename T,typename U> T floor(T x, U y) {return (x>0?x/y:(x-y+1)/y);} template<class T,class S> bool chmax(T &a,const S b) {return (a<b?a=b,1:0);} template<class T,class S> bool chmin(T &a,const S b) {return (a>b?a=b,1:0);} int popcnt(int x) {return __builtin_popcount(x);} int popcnt(ll x) {return __builtin_popcountll(x);} int topbit(int x) {return (x==0?-1:31-__builtin_clz(x));} int topbit(ll x) {return (x==0?-1:63-__builtin_clzll(x));} int lowbit(int x) {return (x==0?-1:__builtin_ctz(x));} int lowbit(ll x) {return (x==0?-1:__builtin_ctzll(x));} #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define per(i,a,b) for(int i=(a);i>=(b);i--) typedef pair<int,int> pii; typedef vector<int> vi; typedef vector<pii> vp; typedef tuple<int,int,int> tiii; int read() { int x=0,w=1; char c=getchar(); while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();} while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();} return x*w; } const int N=1e5+5; int n; vi e[N]; priority_queue<int> q[N]; void dfs(int u,int fa) { for(int v:e[u]) if(v!=fa) { dfs(v,u); if(q[u].size()<q[v].size()) swap(q[u],q[v]); while(!q[v].empty()) q[u].push(q[v].top()), q[v].pop(); } int sz=1,p0=0,p1=0; rep(t,0,1) if(q[u].size()) { int x=q[u].top(); q[u].pop(); sz+=x; if(!p0) p0=x; else p1=x; } if(p0==0||p1==0||(p0&1)||(p1&1)) q[u].push(sz); else q[u].push(1), q[u].push(sz-1); } signed main() { n=read(); rep(i,2,n) { int u=read(), v=read(); e[u].eb(v), e[v].eb(u); } dfs(1,0); printf("%d\n",q[1].top()); return 0; }