結果

問題 No.1637 Easy Tree Query
ユーザー magstamagsta
提出日時 2021-07-09 12:09:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,584 bytes
コンパイル時間 7,116 ms
コンパイル使用メモリ 230,736 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-09-17 03:18:47
合計ジャッジ時間 14,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 265 ms
28,032 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 65 ms
10,704 KB
testcase_05 AC 231 ms
14,728 KB
testcase_06 AC 150 ms
13,984 KB
testcase_07 AC 78 ms
5,912 KB
testcase_08 AC 53 ms
10,836 KB
testcase_09 AC 169 ms
17,472 KB
testcase_10 AC 100 ms
9,332 KB
testcase_11 AC 247 ms
26,520 KB
testcase_12 AC 242 ms
16,812 KB
testcase_13 AC 38 ms
7,272 KB
testcase_14 AC 113 ms
17,736 KB
testcase_15 AC 224 ms
18,612 KB
testcase_16 AC 169 ms
17,672 KB
testcase_17 AC 67 ms
9,428 KB
testcase_18 AC 205 ms
14,592 KB
testcase_19 AC 201 ms
15,180 KB
testcase_20 AC 255 ms
24,904 KB
testcase_21 AC 124 ms
15,784 KB
testcase_22 AC 259 ms
27,540 KB
testcase_23 AC 63 ms
9,808 KB
testcase_24 AC 98 ms
11,564 KB
testcase_25 AC 225 ms
14,372 KB
testcase_26 AC 263 ms
25,196 KB
testcase_27 AC 292 ms
27,444 KB
testcase_28 AC 161 ms
14,184 KB
testcase_29 AC 196 ms
16,440 KB
testcase_30 AC 62 ms
11,056 KB
testcase_31 AC 180 ms
12,136 KB
testcase_32 AC 99 ms
10,464 KB
testcase_33 AC 213 ms
13,600 KB
testcase_34 AC 77 ms
24,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include "testlib.h"
using namespace std;

struct Edge {
    int u;
    int v;
    int cost;
    Edge(int a, int b, int c) : u(a), v(b), cost(c) {

    }
};
using Graph = vector<vector<Edge>>;

vector<int> depth;
vector<long long> subtree_size;
vector<bool> seen;
void dfs(const Graph& G, int v, int p, int d) {
    depth[v] = d;
    seen[v] = true;
    for (auto nv : G[v]) {
        if (nv.v == p) continue;
        dfs(G, nv.v, v, d + 1);
    }

    subtree_size[v] = 1;
    for (auto c : G[v]) {
        if (c.v == p) continue;
        subtree_size[v] += subtree_size[c.v];
    }
}

int main() {
    registerValidation();
    long long N = inf.readInt(2, 100000, "N");
    inf.readSpace();
    long long Q = inf.readInt(1, 100000, "Q");
    inf.readEoln();

    Graph G(N);
    for (int i = 0; i < N - 1; i++) {
        int a = inf.readInt(1, N, "a");
        inf.readSpace();
        int b = inf.readInt(1, N, "b");
        inf.readEoln();
        G[a - 1].emplace_back(a - 1, b - 1, 1);
        G[b - 1].emplace_back(b - 1, a - 1, 1);
    }

    depth.assign(N, 0);
    subtree_size.assign(N, 0);
    seen.assign(N, false);

    dfs(G, 0, -1, 0);

    for (int i = 0; i < N; i++) {
        if (seen[i] == false) cout << -1 << endl;
    }

    long long ans = 0;
    for (int i = 0; i < Q; i++) {
        long long p = inf.readInt(1, N, "p");
        inf.readSpace();
        long long x = inf.readInt(1, 100000000, "x");
        inf.readEoln();
        ans += subtree_size[p - 1] * x;
        cout << ans << endl;
    }
    inf.readEof();
}
0