結果

問題 No.1637 Easy Tree Query
ユーザー trineutrontrineutron
提出日時 2021-08-06 21:27:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 2,949 ms
コンパイル使用メモリ 250,396 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-09-17 03:36:51
合計ジャッジ時間 9,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 239 ms
9,472 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 52 ms
6,656 KB
testcase_05 AC 197 ms
5,632 KB
testcase_06 AC 124 ms
5,376 KB
testcase_07 AC 73 ms
5,376 KB
testcase_08 AC 41 ms
5,888 KB
testcase_09 AC 144 ms
8,064 KB
testcase_10 AC 86 ms
5,376 KB
testcase_11 AC 200 ms
8,576 KB
testcase_12 AC 212 ms
7,296 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 88 ms
8,064 KB
testcase_15 AC 188 ms
8,704 KB
testcase_16 AC 132 ms
9,344 KB
testcase_17 AC 57 ms
5,376 KB
testcase_18 AC 179 ms
5,632 KB
testcase_19 AC 187 ms
6,016 KB
testcase_20 AC 219 ms
7,168 KB
testcase_21 AC 105 ms
6,656 KB
testcase_22 AC 219 ms
9,472 KB
testcase_23 AC 55 ms
5,376 KB
testcase_24 AC 84 ms
6,656 KB
testcase_25 AC 203 ms
5,504 KB
testcase_26 AC 220 ms
7,552 KB
testcase_27 AC 243 ms
9,316 KB
testcase_28 AC 142 ms
5,376 KB
testcase_29 AC 171 ms
7,040 KB
testcase_30 AC 49 ms
6,944 KB
testcase_31 AC 155 ms
5,376 KB
testcase_32 AC 87 ms
5,504 KB
testcase_33 AC 190 ms
5,376 KB
testcase_34 AC 71 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using graph = vector<vector<int>>;

void dfs(const graph &to, vector<int64_t> &children, int v, int p)
{
    children.at(v)++;
    for (auto &&c : to.at(v))
    {
        if (c == p)
        {
            continue;
        }
        dfs(to, children, c, v);
        children.at(v) += children.at(c);
    }
}

int main()
{
    int n, q;
    cin >> n >> q;
    graph to(n);
    for (int i = 0; i < n - 1; i++)
    {
        int a, b;
        cin >> a >> b;
        a--;
        b--;
        to.at(a).push_back(b);
        to.at(b).push_back(a);
    }
    vector<int64_t> children(n);
    dfs(to, children, 0, -1);
    int64_t cost = 0;
    for (int i = 0; i < q; i++)
    {
        int p, x;
        cin >> p >> x;
        p--;
        cost += x * children.at(p);
        cout << cost << endl;
    }
    return 0;
}
0