結果
問題 | No.899 γatheree |
ユーザー | kotatsugame |
提出日時 | 2019-10-12 03:01:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,292 bytes |
コンパイル時間 | 1,131 ms |
コンパイル使用メモリ | 99,440 KB |
実行使用メモリ | 17,204 KB |
最終ジャッジ日時 | 2024-05-04 18:55:39 |
合計ジャッジ時間 | 16,732 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
7,492 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 727 ms
17,096 KB |
testcase_22 | AC | 737 ms
17,120 KB |
testcase_23 | AC | 743 ms
17,108 KB |
コンパイルメッセージ
main.cpp:85:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 85 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<queue> using namespace std; #include<vector> #include<functional> template<typename T> struct lazysegtree{ function<T(T,T)>calcfn,lazycalcfn; function<T(T,T,unsigned int)>updatefn; int n; T defvalue,lazydefvalue; vector<T>dat,lazy; vector<bool>lazyflag; lazysegtree(int n_=0,T defvalue_=0, function<T(T,T)>calcfn_=[](T a,T b){return a+b;}, function<T(T,T)>lazycalcfn_=[](T a,T b){return a+b;}, function<T(T,T,unsigned int)>updatefn_=[](T a,T b,unsigned int width){return a+b*width;}, T lazydefvalue_=0 ):defvalue(defvalue_),lazydefvalue(lazydefvalue_), calcfn(calcfn_),lazycalcfn(lazycalcfn_),updatefn(updatefn_) { n=1; while(n<n_)n<<=1; dat.assign(2*n-1,defvalue); lazy.assign(2*n-1,lazydefvalue); lazyflag.assign(2*n-1,false); } void copy(const vector<T>&v) { for(int i=0;i<v.size();i++)dat[i+n-1]=v[i]; for(int i=n-2;i>=0;i--)dat[i]=calcfn(dat[2*i+1],dat[2*i+2]); } void eval(int i,int l,int r) { if(lazyflag[i]) { dat[i]=updatefn(dat[i],lazy[i],r-l); if(r-l>1) { lazy[2*i+1]=lazycalcfn(lazy[2*i+1],lazy[i]); lazy[2*i+2]=lazycalcfn(lazy[2*i+2],lazy[i]); lazyflag[2*i+1]=lazyflag[2*i+2]=true; } lazy[i]=lazydefvalue; lazyflag[i]=false; } } void update(int a,int b,T x,int k=0,int l=0,int r=-1)//[a,b) { if(r<0)r=n; eval(k,l,r); if(b<=l||r<=a)return; else if(a<=l&&r<=b) { lazy[k]=lazycalcfn(lazy[k],x); lazyflag[k]=true; eval(k,l,r); } else { update(a,b,x,2*k+1,l,(l+r)/2); update(a,b,x,2*k+2,(l+r)/2,r); dat[k]=calcfn(dat[2*k+1],dat[2*k+2]); } } T query(int a,int b,int k=0,int l=0,int r=-1)//[a,b) { if(r<0)r=n; eval(k,l,r); if(b<=l||r<=a)return defvalue; else if(a<=l&&r<=b)return dat[k]; else return calcfn( query(a,b,2*k+1,l,(l+r)/2), query(a,b,2*k+2,(l+r)/2,r) ); } }; int N; vector<int>G[1<<17]; int Lc[1<<17],Rc[1<<17]; int p[1<<17]; vector<int>A; int Ainv[1<<17]; main() { cin>>N; for(int i=1;i<N;i++) { int u,v;cin>>u>>v; G[u].push_back(v); G[v].push_back(u); } for(int i=0;i<N;i++)Lc[i]=Rc[i]=p[i]=-1; queue<int>PP; PP.push(0); A.push_back(0); while(!PP.empty()) { int u=PP.front();PP.pop(); for(int v:G[u]) { if(v==p[u])continue; if(Lc[u]<0)Lc[u]=A.size(); Rc[u]=A.size(); A.push_back(v); p[v]=u; PP.push(v); } } for(int i=0;i<N;i++)Ainv[A[i]]=i; vector<long>B(N); for(int i=0;i<N;i++)cin>>B[Ainv[i]]; lazysegtree<long>P(N,0,[](long a,long b){return a+b;}, [](long a,long b){return b;}, [](long a,long b,unsigned int w){return b*w;}); P.copy(B); int Q;cin>>Q; for(;Q--;) { int x;cin>>x; long ans=0; if(Lc[x]>=0) { int L=Lc[x],R=Rc[x]+1; ans+=P.query(L,R); P.update(L,R,0); if(Lc[A[L]]>=0) { R=R<N&&Lc[A[R]]>=0?Lc[A[R]]:N; ans+=P.query(Lc[A[L]],R); P.update(Lc[A[L]],R,0); } } if(p[x]>=0) { int u=p[x]; ans+=P.query(Lc[u],Rc[u]+1); P.update(Lc[u],Rc[u]+1,0); if(p[u]>=0) { int v=p[u]; ans+=P.query(Ainv[v],Ainv[v]+1); P.update(Ainv[v],Ainv[v]+1,0); } ans+=P.query(Ainv[u],Ainv[u]+1); P.update(Ainv[u],Ainv[u]+1,0); } else { ans+=P.query(Ainv[x],Ainv[x]+1); P.update(Ainv[x],Ainv[x]+1,0); } cout<<ans<<endl; P.update(Ainv[x],Ainv[x]+1,ans); } }