結果
問題 | No.1637 Easy Tree Query |
ユーザー | MtSaka |
提出日時 | 2021-08-06 23:57:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 259 ms / 2,000 ms |
コード長 | 2,736 bytes |
コンパイル時間 | 1,911 ms |
コンパイル使用メモリ | 205,024 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-09-17 04:22:43 |
合計ジャッジ時間 | 9,195 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 244 ms
10,240 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 56 ms
7,884 KB |
testcase_05 | AC | 210 ms
7,168 KB |
testcase_06 | AC | 133 ms
6,940 KB |
testcase_07 | AC | 75 ms
6,940 KB |
testcase_08 | AC | 44 ms
7,372 KB |
testcase_09 | AC | 155 ms
8,832 KB |
testcase_10 | AC | 101 ms
6,940 KB |
testcase_11 | AC | 218 ms
9,344 KB |
testcase_12 | AC | 219 ms
8,448 KB |
testcase_13 | AC | 35 ms
6,940 KB |
testcase_14 | AC | 97 ms
9,088 KB |
testcase_15 | AC | 194 ms
9,600 KB |
testcase_16 | AC | 147 ms
9,856 KB |
testcase_17 | AC | 64 ms
6,940 KB |
testcase_18 | AC | 191 ms
7,040 KB |
testcase_19 | AC | 187 ms
7,552 KB |
testcase_20 | AC | 229 ms
8,320 KB |
testcase_21 | AC | 109 ms
7,936 KB |
testcase_22 | AC | 221 ms
10,112 KB |
testcase_23 | AC | 58 ms
6,940 KB |
testcase_24 | AC | 89 ms
7,936 KB |
testcase_25 | AC | 213 ms
7,132 KB |
testcase_26 | AC | 246 ms
8,576 KB |
testcase_27 | AC | 259 ms
9,728 KB |
testcase_28 | AC | 142 ms
7,040 KB |
testcase_29 | AC | 169 ms
8,192 KB |
testcase_30 | AC | 50 ms
8,192 KB |
testcase_31 | AC | 165 ms
6,940 KB |
testcase_32 | AC | 92 ms
7,168 KB |
testcase_33 | AC | 197 ms
6,944 KB |
testcase_34 | AC | 70 ms
17,152 KB |
ソースコード
//GIVE ME AC!!!!!!!!!!!!!!!!! //#pragma GCC target("avx") //#pragma GCC optimize("O3") //#pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> #define ll long long #define ld long double #define floatset() fixed<<setprecision(15) #define all(n) n.begin(),n.end() #define rall(n) n.rbegin(),n.rend() #define rep(i, s, n) for (ll i = s; i < (ll)(n); i++) #define pb push_back #define eb emplace_back #define max_(a) *max_element(all(a)) #define min_(a) *min_element(all(a)) #define INT(...) int __VA_ARGS__;scan(__VA_ARGS__) #define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__) #define STR(...) string __VA_ARGS__;scan(__VA_ARGS__) #define CHR(...) char __VA_ARGS__;scan(__VA_ARGS__) #define DBL(...) double __VA_ARGS__;scan(__VA_ARGS__) #define LD(...) ld __VA_ARGS__;scan(__VA_ARGS__) using namespace std; using vl=vector<ll>; using vi=vector<int>; using vs=vector<string>; using vc=vector<char>; using vvl=vector<vl>; using P=pair<ll,ll>; using vvc=vector<vc>; using vd=vector<double>; using vp=vector<P>; using vb=vector<bool>; const int dx[8]={1,0,-1,0,1,-1,-1,1}; const int dy[8]={0,1,0,-1,1,1,-1,-1}; const ll inf=2e18; const ll MOD=1000000007; const ll mod=998244353; const double pi=acos(-1); template<typename T1,typename T2 > ostream &operator<<(ostream&os,const pair<T1,T2>&p) { os<<p.first<<" "<<p.second; return os; } template<typename T1,typename T2> istream &operator>>(istream&is,pair<T1,T2>&p) { is>>p.first>>p.second; return is; } template<typename T> ostream &operator<<(ostream&os,const vector<T>&v) { for(int i=0;i<(int)v.size();i++) { os<<v[i]<<(i+1!=v.size()?" ":""); } return os; } template<typename T> istream &operator>>(istream&is,vector<T>&v) { for(T &in:v)is>>in; return is; } void scan(){} template<class Head,class... Tail> void scan(Head&head,Tail&... tail) { cin>>head; scan(tail...); } template<class T> void print(const T &t) { cout << t << '\n'; } template<class Head, class... Tail> void print(const Head &head, const Tail &... tail) { cout << head << ' '; print(tail...); } template<class... T> void fin(const T &... a) { print(a...); exit(0); } template<typename T> ll sum_(vector<T>&v){ ll res=0; for(auto &e:v)res+=e; return res; } template<typename T1,typename T2> inline bool chmax(T1&a,T2 b){return a<b&&(a=b,true);} template<typename T1,typename T2> inline bool chmin(T1&a,T2 b){return a>b&&(a=b,true);} vl d; vvl g(100000); void dfs(ll v,ll p=-1){ d[v]=1; for(auto u:g[v]){ if(u==p)continue; dfs(u,v); d[v]+=d[u]; } } int main(){ LL(n,q); rep(i,0,n-1){ LL(a,b); a--,b--; g[a].pb(b); g[b].pb(a); } d.resize(n); dfs(0); ll ans=0; rep(i,0,q){ LL(p,x); p--; ans+=d[p]*x; print(ans); } }