結果
問題 | No.1637 Easy Tree Query |
ユーザー | milkcoffee |
提出日時 | 2021-06-25 11:41:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 199 ms / 2,000 ms |
コード長 | 1,897 bytes |
コンパイル時間 | 3,915 ms |
コンパイル使用メモリ | 234,232 KB |
実行使用メモリ | 14,080 KB |
最終ジャッジ日時 | 2024-09-17 03:18:04 |
合計ジャッジ時間 | 9,930 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 182 ms
11,008 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 37 ms
7,936 KB |
testcase_05 | AC | 163 ms
7,040 KB |
testcase_06 | AC | 105 ms
6,944 KB |
testcase_07 | AC | 59 ms
6,940 KB |
testcase_08 | AC | 30 ms
7,296 KB |
testcase_09 | AC | 117 ms
9,344 KB |
testcase_10 | AC | 72 ms
6,944 KB |
testcase_11 | AC | 161 ms
9,984 KB |
testcase_12 | AC | 165 ms
8,704 KB |
testcase_13 | AC | 25 ms
6,944 KB |
testcase_14 | AC | 64 ms
9,472 KB |
testcase_15 | AC | 147 ms
10,240 KB |
testcase_16 | AC | 100 ms
10,752 KB |
testcase_17 | AC | 46 ms
6,944 KB |
testcase_18 | AC | 147 ms
7,040 KB |
testcase_19 | AC | 142 ms
7,552 KB |
testcase_20 | AC | 176 ms
8,576 KB |
testcase_21 | AC | 82 ms
8,064 KB |
testcase_22 | AC | 175 ms
10,752 KB |
testcase_23 | AC | 43 ms
6,940 KB |
testcase_24 | AC | 65 ms
8,064 KB |
testcase_25 | AC | 165 ms
6,944 KB |
testcase_26 | AC | 179 ms
8,960 KB |
testcase_27 | AC | 199 ms
10,496 KB |
testcase_28 | AC | 116 ms
6,944 KB |
testcase_29 | AC | 136 ms
8,448 KB |
testcase_30 | AC | 35 ms
8,320 KB |
testcase_31 | AC | 139 ms
6,944 KB |
testcase_32 | AC | 69 ms
6,944 KB |
testcase_33 | AC | 157 ms
6,940 KB |
testcase_34 | AC | 34 ms
14,080 KB |
ソースコード
#include <bits/stdc++.h> #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif using namespace std; #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #define ll long long #define forin(in ,n) for(ll i=0; i<n; i++) cin>>in[i] #define forout(out) for(ll i=0; i<(ll)out.size(); i++) cout<<out[i]<<endl #define rep(i, n) for (ll i = 0; i < n; ++i) #define rep_up(i, a, n) for (ll i = a; i < n; ++i) #define rep_down(i, a, n) for (ll i = a; i >= n; --i) #define P pair<ll, ll> #define all(v) v.begin(), v.end() #define fi first #define se second #define vvvll vector<vector<vector<ll>>> #define vvll vector<vector<ll>> #define vll vector<ll> #define pqll priority_queue<ll> #define pqllg priority_queue<ll, vector<ll>, greater<ll>> constexpr ll INF = (1ll << 60); //constexpr ll mod = 1000000007; constexpr ll mod = 998244353; vll seen(100001); vll cnt(100001); void dfs(vvll &G, ll v){ ll res=1; seen[v]=1; for(auto e:G[v]){ if(seen[e]==1) continue; dfs(G,e); res+=cnt[e]; } cnt[v]=res; } void solve(){ ll n,q,sum=0,ans=0; cin>>n>>q; if(n<2||n>100000||q<1||q>100000){ cout<<"Error"<<endl; return; } vvll G(n); rep(i,n-1){ ll a,b; cin>>a>>b; if(a>n||a<1||b>n||b<1){ cout<<"Error"<<endl; return; } a--;b--; G[a].push_back(b); G[b].push_back(a); } dfs(G,0); rep(i,q){ ll p,x; cin>>p>>x; if(p<1||p>n||x<1||x>100000000){ cout<<"Error"<<endl; return; } p--; sum+=cnt[p]*x; cout<<sum<<endl; } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); // cout << fixed << setprecision(16); //ll T; //cin>>T; //rep(ca,T) solve(); }