結果

問題 No.1637 Easy Tree Query
ユーザー abc3abc3
提出日時 2021-08-06 22:48:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 1,347 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 203,396 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-09-17 03:56:01
合計ジャッジ時間 8,403 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 186 ms
10,496 KB
testcase_03 AC 4 ms
5,760 KB
testcase_04 AC 36 ms
8,244 KB
testcase_05 AC 163 ms
7,424 KB
testcase_06 AC 105 ms
7,040 KB
testcase_07 AC 59 ms
6,016 KB
testcase_08 AC 30 ms
7,808 KB
testcase_09 AC 112 ms
9,472 KB
testcase_10 AC 70 ms
6,944 KB
testcase_11 AC 160 ms
9,856 KB
testcase_12 AC 162 ms
8,832 KB
testcase_13 AC 25 ms
6,912 KB
testcase_14 AC 62 ms
9,472 KB
testcase_15 AC 148 ms
9,984 KB
testcase_16 AC 99 ms
10,496 KB
testcase_17 AC 46 ms
6,912 KB
testcase_18 AC 148 ms
7,552 KB
testcase_19 AC 144 ms
7,936 KB
testcase_20 AC 172 ms
8,832 KB
testcase_21 AC 81 ms
8,320 KB
testcase_22 AC 170 ms
10,432 KB
testcase_23 AC 43 ms
7,168 KB
testcase_24 AC 63 ms
8,320 KB
testcase_25 AC 166 ms
7,424 KB
testcase_26 AC 175 ms
9,068 KB
testcase_27 AC 190 ms
10,368 KB
testcase_28 AC 115 ms
7,296 KB
testcase_29 AC 134 ms
8,636 KB
testcase_30 AC 33 ms
8,704 KB
testcase_31 AC 141 ms
5,760 KB
testcase_32 AC 69 ms
7,552 KB
testcase_33 AC 156 ms
6,912 KB
testcase_34 AC 37 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

   #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    typedef unsigned long long ull;
    using P=pair<ll,ll>;
    const int INF=1001001001;
    const int mod=998244353;
    
    vector<int>G[100005];
    int cnt;
    ll t[100005],have[100005];

    void dfs(int i,int pre=-1){
        t[i]=cnt++;
        for(int u:G[i]){
            if(u!=pre){
                dfs(u,i);
            }
        }
        have[i]=cnt-t[i];
    }
    void solve(){
        int n,q;
        cin>>n>>q;
        rep(i,n-1){
            int a,b;
            cin>>a>>b;
            a--;b--;
            G[a].push_back(b);
            G[b].push_back(a);
        }
        dfs(0);
        ll tot=0;
        rep(i,q){
            int p,x;
            cin>>p>>x;
            p--;
            tot+=have[p]*x;
            cout<<tot<<endl;
        }
    }

    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve();  

        return 0;
    }
0