結果
問題 | No.2676 A Tourist |
ユーザー | kmjp |
提出日時 | 2024-03-18 21:41:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 931 ms / 5,000 ms |
コード長 | 3,399 bytes |
コンパイル時間 | 2,633 ms |
コンパイル使用メモリ | 215,912 KB |
実行使用メモリ | 108,760 KB |
最終ジャッジ日時 | 2024-09-30 05:02:25 |
合計ジャッジ時間 | 18,025 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
7,688 KB |
testcase_01 | AC | 221 ms
23,080 KB |
testcase_02 | AC | 908 ms
51,092 KB |
testcase_03 | AC | 248 ms
51,188 KB |
testcase_04 | AC | 396 ms
51,304 KB |
testcase_05 | AC | 502 ms
51,124 KB |
testcase_06 | AC | 180 ms
24,192 KB |
testcase_07 | AC | 769 ms
53,672 KB |
testcase_08 | AC | 171 ms
55,256 KB |
testcase_09 | AC | 539 ms
53,796 KB |
testcase_10 | AC | 218 ms
53,796 KB |
testcase_11 | AC | 542 ms
46,612 KB |
testcase_12 | AC | 214 ms
42,212 KB |
testcase_13 | AC | 848 ms
108,760 KB |
testcase_14 | AC | 237 ms
108,392 KB |
testcase_15 | AC | 453 ms
108,392 KB |
testcase_16 | AC | 221 ms
22,044 KB |
testcase_17 | AC | 931 ms
51,712 KB |
testcase_18 | AC | 246 ms
51,668 KB |
testcase_19 | AC | 773 ms
51,616 KB |
testcase_20 | AC | 552 ms
51,656 KB |
testcase_21 | AC | 41 ms
9,728 KB |
testcase_22 | AC | 82 ms
7,572 KB |
testcase_23 | AC | 61 ms
7,824 KB |
testcase_24 | AC | 104 ms
9,740 KB |
testcase_25 | AC | 19 ms
7,824 KB |
testcase_26 | AC | 2 ms
7,696 KB |
testcase_27 | AC | 179 ms
24,132 KB |
testcase_28 | AC | 769 ms
54,224 KB |
testcase_29 | AC | 171 ms
53,616 KB |
testcase_30 | AC | 634 ms
53,744 KB |
testcase_31 | AC | 529 ms
53,608 KB |
testcase_32 | AC | 222 ms
108,260 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- struct HLdecomp { static const int MD=20; int N,NE,id; vector<vector<int>> E; vector<int> D,S,B,C; // depth, size, base,heavy child vector<int> L,R,rev; // EulerTour vector<vector<int>> P,Cs; // parent for LCA,children void init(int N) { this->N=N, NE=0, E.clear(),E.resize(N); Cs.clear(),Cs.resize(N); D=S=B=C=L=R=rev=vector<int>(N,0); id=0; int i; P.clear(); FOR(i,MD+1) P.push_back(vector<int>(N,0));} void add_edge(int a,int b){ E[a].push_back(b),E[b].push_back(a); NE++;} // undir void dfs(int cur,int pre) { // get depth, parent, size, largest subtree int i; P[0][cur]=pre;S[cur]=1;C[cur]=-1;B[cur]=cur; D[cur]=(pre==cur)?0:(D[pre]+1); FOR(i,E[cur].size()) if(E[cur][i]!=pre) { int r=E[cur][i]; dfs(r,cur); S[cur]+=S[r]; if(C[cur]==-1 || S[r]>S[C[cur]]) C[cur]=r; } } void dfs2(int cur,int pre) { // set base and list if(pre!=cur && C[pre]==cur) B[cur]=B[pre]; else B[cur]=cur; Cs[B[cur]].push_back(cur); L[cur]=id++; rev[L[cur]]=cur; // DFS順を先行 if(C[cur]!=-1) dfs2(C[cur],cur); FORR(r,E[cur]) if(r!=pre && r!=C[cur]) dfs2(r,cur); R[cur]=id; } pair<int,int> lca(int a,int b) { int ret=0,i,aa=a,bb=b; if(D[aa]>D[bb]) swap(aa,bb); for(i=19;i>=0;i--) if(D[bb]-D[aa]>=1<<i) bb=P[i][bb]; for(i=19;i>=0;i--) if(P[i][aa]!=P[i][bb]) aa=P[i][aa], bb=P[i][bb]; return make_pair((aa==bb)?aa:P[0][aa], D[a]+D[b]-2*D[(aa==bb)?aa:P[0][aa]]); } int getpar(int cur,int up) { int i; FOR(i,20) if(up&(1<<i)) cur=P[i][cur]; return cur; } void decomp(int root=0){ assert(NE==N-1); dfs(root,root); dfs2(root,root); int i,x; FOR(i,MD) FOR(x,N) P[i+1][x]=P[i][P[i][x]]; } }; HLdecomp hl; int N,Q; ll A[202020]; template<class V, int ME> class BIT { public: V bit[1<<ME]; V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;} void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;} }; BIT<ll,20> bt; ll get(int f,int t) { // fはtの子孫 ll ret = 0; while(hl.B[f]!=hl.B[t]) { ret += bt(hl.L[f])-bt(hl.L[hl.B[f]]-1); f=hl.P[0][hl.B[f]]; } ret += bt(hl.L[f])-bt(hl.L[t]); return ret; } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>Q; hl.init(N+1); FOR(i,N) cin>>A[i+1]; hl.add_edge(0,1); FOR(i,N-1) { cin>>x>>y; hl.add_edge(x,y); } hl.decomp(); N++; for(i=1;i<N;i++) { bt.add(hl.L[hl.P[0][i]],A[i]); } while(Q--) { cin>>i>>x>>y; if(i==0) { A[x]+=y; bt.add(hl.L[hl.P[0][x]],y); } else { int lc=hl.lca(x,y).first; ll ret=get(x,lc)+get(y,lc)+bt(hl.L[lc])-bt(hl.L[lc]-1)+A[lc]+A[hl.P[0][lc]]; cout<<ret<<endl; } } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }