結果

問題 No.1637 Easy Tree Query
ユーザー ytsmashytsmash
提出日時 2021-08-20 19:30:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 206,508 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-10-14 00:25:49
合計ジャッジ時間 11,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 266 ms
11,008 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 67 ms
7,168 KB
testcase_05 AC 224 ms
6,144 KB
testcase_06 AC 148 ms
5,248 KB
testcase_07 AC 77 ms
5,248 KB
testcase_08 AC 54 ms
6,272 KB
testcase_09 AC 174 ms
8,960 KB
testcase_10 AC 100 ms
5,248 KB
testcase_11 AC 241 ms
9,472 KB
testcase_12 AC 242 ms
8,192 KB
testcase_13 AC 38 ms
5,248 KB
testcase_14 AC 108 ms
9,088 KB
testcase_15 AC 222 ms
9,984 KB
testcase_16 AC 170 ms
10,624 KB
testcase_17 AC 67 ms
5,248 KB
testcase_18 AC 206 ms
6,016 KB
testcase_19 AC 201 ms
6,656 KB
testcase_20 AC 247 ms
7,808 KB
testcase_21 AC 125 ms
7,296 KB
testcase_22 AC 269 ms
10,752 KB
testcase_23 AC 63 ms
5,376 KB
testcase_24 AC 99 ms
7,296 KB
testcase_25 AC 228 ms
5,760 KB
testcase_26 AC 256 ms
8,448 KB
testcase_27 AC 293 ms
10,368 KB
testcase_28 AC 159 ms
5,504 KB
testcase_29 AC 198 ms
7,808 KB
testcase_30 AC 62 ms
7,808 KB
testcase_31 AC 178 ms
5,248 KB
testcase_32 AC 101 ms
5,888 KB
testcase_33 AC 214 ms
5,248 KB
testcase_34 AC 75 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *    author:  ytsmash
 *    created: 15.08.2021 10:24:54
 **/

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

typedef long long ll;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define all(x) x.begin(), x.end()
const long double EPS = 1e-10;
const long long INF = 1e18;
const long double PI = acos(-1.0L);
using P = pair<int, int>;

vector<vector<ll>> d;
vector<ll> cnt;
vector<ll> B;

void f(int i) {
    B[i] = 1;
    for (ll j : d[i]) {
        if (B[j] == 0) {
            f(j);
            cnt[i] += cnt[j];
        }
    }
    return;
}

int main() {
    ll N, Q, a, b, ans = 0, p, x;
    cin >> N >> Q;
    d.resize(N);
    cnt.resize(N);
    B.resize(N);
    for (int i = 0; i < N - 1; i++) {
        cnt[i] = 1;  // 頂点p[i]を根とする部分木に含まれる頂点の数
        cin >> a >> b;
        d[a - 1].push_back(b - 1);
        d[b - 1].push_back(a - 1);
    }
    cnt[N - 1] = 1;
    f(0);
    rep(i, Q) {
        cin >> p >> x;
        ans += cnt[p - 1] * x;
        cout << ans << "\n";
    }
}
0