結果
問題 | No.1038 TreeAddQuery |
ユーザー | autumn-eel |
提出日時 | 2020-10-09 20:57:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,661 bytes |
コンパイル時間 | 1,955 ms |
コンパイル使用メモリ | 180,780 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-20 07:55:18 |
合計ジャッジ時間 | 11,413 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 560 ms
5,376 KB |
testcase_04 | AC | 651 ms
5,376 KB |
testcase_05 | AC | 586 ms
5,376 KB |
testcase_06 | AC | 458 ms
5,376 KB |
testcase_07 | AC | 716 ms
5,376 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef pair<ll,ll>P; class LCA{ public: vector<vector<pair<int,int>>>E; vector<vector<int>>par; vector<int>d1; vector<long long>d2; int MAX_LOG=22; int n; LCA(){} LCA(int N){ n=N; E=vector<vector<pair<int,int>>>(n); par=vector<vector<int>>(MAX_LOG,vector<int>(n)); d1=vector<int>(n); d2=vector<long long>(n); } void add_edge(int a,int b,int c){ E[a].push_back(make_pair(c,b)); E[b].push_back(make_pair(c,a)); } void add_edge(int a,int b){ E[a].push_back(make_pair(1,b)); E[b].push_back(make_pair(1,a)); } private: void dfs(int u,int p,int a,long long b){ par[0][u]=p;d1[u]=a;d2[u]=b; for(auto&v:E[u]){ if(v.second!=p)dfs(v.second,u,a+1,b+v.first); } } bool flag=false; void init(){ dfs(0,-1,0,0); for(int i=1;i<MAX_LOG;i++)for(int j=0;j<n;j++){ if(par[i-1][j]==-1)par[i][j]=-1; else par[i][j]=par[i-1][par[i-1][j]]; } flag=true; } public: int lca(int u,int v){ if(!flag)init(); if(d1[u]>d1[v])swap(u,v); for(int i=0;i<MAX_LOG;i++){ if((d1[v]-d1[u])>>i&1)v=par[i][v]; } if(u==v)return u; for(int i=MAX_LOG-1;i>=0;i--){ if(par[i][u]!=par[i][v]){ u=par[i][u]; v=par[i][v]; } } return par[0][u]; } long long dist(int u,int v){ int l=lca(u,v); return d2[u]+d2[v]-d2[l]*2; } }; ll score[200000]; int main(){ int n,q;cin>>n>>q; LCA lca(n); rep(i,n-1){ int a,b;scanf("%d%d",&a,&b);a--;b--; lca.add_edge(a,b); } rep(i,q){ int x,y,z;scanf("%d%d%d",&x,&y,&z);x--; printf("%lld\n",score[x]); rep(j,n){ if(lca.dist(x,j)<=y)score[j]+=z; } } }