結果
問題 | No.1752 Up-Down Tree |
ユーザー | blackyuki |
提出日時 | 2022-01-22 14:30:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 187 ms / 2,000 ms |
コード長 | 3,607 bytes |
コンパイル時間 | 2,139 ms |
コンパイル使用メモリ | 212,912 KB |
実行使用メモリ | 23,420 KB |
最終ジャッジ日時 | 2024-11-27 11:22:18 |
合計ジャッジ時間 | 4,841 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
23,420 KB |
testcase_01 | AC | 187 ms
23,416 KB |
testcase_02 | AC | 102 ms
15,744 KB |
testcase_03 | AC | 98 ms
15,556 KB |
testcase_04 | AC | 123 ms
19,076 KB |
testcase_05 | AC | 126 ms
20,612 KB |
testcase_06 | AC | 114 ms
17,616 KB |
testcase_07 | AC | 117 ms
17,932 KB |
testcase_08 | AC | 62 ms
11,648 KB |
testcase_09 | AC | 105 ms
14,936 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 47 ms
8,576 KB |
testcase_14 | AC | 55 ms
9,856 KB |
testcase_15 | AC | 12 ms
5,248 KB |
testcase_16 | AC | 53 ms
9,344 KB |
testcase_17 | AC | 43 ms
8,320 KB |
testcase_18 | AC | 110 ms
15,456 KB |
testcase_19 | AC | 112 ms
15,424 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(long long i=0;i<(long long)(n);i++) #define REP(i,k,n) for(long long i=k;i<(long long)(n);i++) #define pb emplace_back #define lb(v,k) (lower_bound(all(v),(k))-v.begin()) #define ub(v,k) (upper_bound(all(v),(k))-v.begin()) #define fi first #define se second #define pi M_PI #define PQ(T) priority_queue<T> #define SPQ(T) priority_queue<T,vector<T>,greater<T>> #define dame(a) {out(a);return 0;} #define decimal cout<<fixed<<setprecision(15); #define all(a) a.begin(),a.end() #define rsort(a) {sort(all(a));reverse(all(a));} #define dupli(a) {sort(all(a));a.erase(unique(all(a)),a.end());} #define popcnt __builtin_popcountll typedef long long ll; typedef pair<ll,ll> P; typedef tuple<ll,ll,ll> PP; typedef tuple<ll,ll,ll,ll> PPP; using vi=vector<ll>; using vvi=vector<vi>; using vvvi=vector<vvi>; using vvvvi=vector<vvvi>; using vp=vector<P>; using vvp=vector<vp>; using vb=vector<bool>; using vvb=vector<vb>; const ll inf=1001001001001001001; const ll INF=1001001001; const ll mod=1000000007; const double eps=1e-10; template<class T> bool chmin(T&a,T b){if(a>b){a=b;return true;}return false;} template<class T> bool chmax(T&a,T b){if(a<b){a=b;return true;}return false;} template<class T> void out(T a){cout<<a<<'\n';} template<class T> void outp(T a){cout<<'('<<a.fi<<','<<a.se<<')'<<'\n';} template<class T> void outvp(T v){rep(i,v.size())cout<<'('<<v[i].fi<<','<<v[i].se<<')';cout<<'\n';} template<class T> void outvvp(T v){rep(i,v.size())outvp(v[i]);} template<class T> void outv(T v){rep(i,v.size()){if(i)cout<<' ';cout<<v[i];}cout<<'\n';} template<class T> void outvv(T v){rep(i,v.size())outv(v[i]);} template<class T> bool isin(T x,T l,T r){return (l)<=(x)&&(x)<=(r);} template<class T> void yesno(T b){if(b)out("yes");else out("no");} template<class T> void YesNo(T b){if(b)out("Yes");else out("No");} template<class T> void YESNO(T b){if(b)out("YES");else out("NO");} template<class T> void outset(T s){auto itr=s.begin();while(itr!=s.end()){if(itr!=s.begin())cout<<' ';cout<<*itr;itr++;}cout<<'\n';} void outs(ll a,ll b){if(a>=inf-100)out(b);else out(a);} ll gcd(ll a,ll b){if(b==0)return a;return gcd(b,a%b);} ll modpow(ll a,ll b){ll res=1;a%=mod;while(b){if(b&1)res=res*a%mod;a=a*a%mod;b>>=1;}return res;} class segtree{ vp seg;ll n; public: P g=P(-inf,0); P f(P a,P b){ return max(a,b); } segtree(vp v):n(v.size()){ seg=vp(n*2,g); rep(i,n)seg[i+n]=v[i]; for(ll i=n-1;i;i--)seg[i]=f(seg[i*2],seg[i*2+1]); } void update(ll i,P x){ i+=n;seg[i]=x; for(i>>=1;i;i>>=1)seg[i]=f(seg[i*2],seg[i*2+1]); } P get(ll l,ll r){ P resl=g,resr=g; for(l+=n,r+=n;l<r;l>>=1,r>>=1){ if(l&1)resl=f(resl,seg[l++]); if(r&1)resr=f(seg[--r],resr); } return f(resl,resr); } }; int main(){ ll n;cin>>n; vvi g(n); rep(i,n-1){ ll a,b;cin>>a>>b;a--;b--; g[a].pb(b);g[b].pb(a); } vp tmp(n);rep(i,n)tmp[i]=P(0,i); segtree seg(tmp); ll cnt=0; vi euler(n); ll t=0; function<void(ll,ll)> dfs=[&](ll i,ll p){ euler[i]=cnt++; for(ll x:g[i])if(x!=p)dfs(x,i); P a,b; a=seg.get(euler[i],cnt); seg.update(a.se,P(0,a.se)); b=seg.get(euler[i],cnt); seg.update(b.se,P(0,b.se)); ll res=a.fi+b.fi+1; if(a.fi%2==0&&b.fi%2==0&&a.fi&&b.fi){ res--; seg.update(b.se,P(1,b.se)); } seg.update(euler[i],P(res,euler[i])); };dfs(0,-1); out(seg.get(0,1).fi); }