結果

問題 No.1637 Easy Tree Query
ユーザー hiro71687khiro71687k
提出日時 2023-08-26 23:40:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 3,904 ms
コンパイル使用メモリ 263,868 KB
実行使用メモリ 19,696 KB
最終ジャッジ日時 2024-06-07 19:04:38
合計ジャッジ時間 12,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 264 ms
12,384 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 53 ms
7,296 KB
testcase_05 AC 208 ms
7,376 KB
testcase_06 AC 137 ms
5,888 KB
testcase_07 AC 71 ms
5,376 KB
testcase_08 AC 45 ms
6,528 KB
testcase_09 AC 153 ms
9,728 KB
testcase_10 AC 91 ms
5,632 KB
testcase_11 AC 209 ms
10,800 KB
testcase_12 AC 215 ms
9,468 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 93 ms
9,600 KB
testcase_15 AC 197 ms
11,208 KB
testcase_16 AC 148 ms
11,392 KB
testcase_17 AC 62 ms
5,504 KB
testcase_18 AC 193 ms
7,248 KB
testcase_19 AC 186 ms
7,828 KB
testcase_20 AC 230 ms
9,200 KB
testcase_21 AC 113 ms
7,936 KB
testcase_22 AC 229 ms
11,940 KB
testcase_23 AC 59 ms
5,888 KB
testcase_24 AC 92 ms
7,808 KB
testcase_25 AC 206 ms
7,152 KB
testcase_26 AC 226 ms
9,616 KB
testcase_27 AC 264 ms
11,620 KB
testcase_28 AC 150 ms
6,972 KB
testcase_29 AC 174 ms
9,100 KB
testcase_30 AC 51 ms
7,936 KB
testcase_31 AC 161 ms
5,376 KB
testcase_32 AC 90 ms
6,656 KB
testcase_33 AC 194 ms
6,272 KB
testcase_34 AC 74 ms
19,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1009999999999999990;
void dfs(ll now,vector<vector<ll>>&g,vector<ll>&dp,vector<ll>&memo){
    memo[now]=1;
    dp[now]=1;
    for (ll i = 0; i < g[now].size(); i++)
    {
        if (memo[g[now][i]]==0)
        {
            dfs(g[now][i],g,dp,memo);
            dp[now]+=dp[g[now][i]];
        }
    }
}
int main(){
    ll n,q;
    cin >>n >> q;
    vector<vector<ll>>g(n);
    for (ll i = 0; i < n-1; i++)
    {
        ll a,b;
        cin >> a >> b;
        a--,b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    vector<ll>dp(n,0);
    vector<ll>memo(n,0);
    dfs(0,g,dp,memo);
    ll ans=0;
    vector<ll>a;
    for (ll i = 0; i < q; i++)
    {
        ll p,x;
        cin >> p >> x;
        p--;
        ans+=x*dp[p];
        a.push_back(ans);
    }
    for (ll i = 0; i < a.size(); i++)
    {
        cout << a[i] << endl;
    }
    
}
0