結果

問題 No.806 木を道に
ユーザー TiramisterTiramister
提出日時 2019-03-22 22:51:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 10,816 KB
最終ジャッジ日時 2024-09-19 06:14:50
合計ジャッジ時間 2,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 14 ms
6,940 KB
testcase_12 AC 65 ms
8,832 KB
testcase_13 AC 44 ms
7,168 KB
testcase_14 AC 59 ms
8,576 KB
testcase_15 AC 63 ms
8,704 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 54 ms
8,064 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 16 ms
6,944 KB
testcase_20 AC 54 ms
7,936 KB
testcase_21 AC 30 ms
6,944 KB
testcase_22 AC 72 ms
9,600 KB
testcase_23 AC 73 ms
9,600 KB
testcase_24 AC 34 ms
6,944 KB
testcase_25 AC 52 ms
7,552 KB
testcase_26 AC 19 ms
6,940 KB
testcase_27 AC 63 ms
10,816 KB
testcase_28 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

template <class T>
struct Edge {
    int from, to;
    T cost;
    Edge(int from = -1, int to = -1, T cost = 1) : from(from), to(to), cost(cost){};

    bool operator<(const Edge<T>& e) const { return this->cost < e.cost; }
    bool operator>(const Edge<T>& e) const { return this->cost > e.cost; }
};

template <class T = int>
class Graph {
public:
    explicit Graph(int N = 0) : size(N) { path.resize(size); }
    void span(int u, int v, T cost = 1) { path[u].push_back(Edge<T>(u, v, cost)); }
    std::vector<Edge<T>> operator[](int v) const { return path[v]; }

    int size;
    std::vector<std::vector<Edge<T>>> path;
};

int main() {
    int N;
    std::cin >> N;

    Graph<> tree(N);
    for (int i = 0; i < N - 1; ++i) {
        int u, v;
        std::cin >> u >> v;
        --u, --v;
        tree.span(u, v);
        tree.span(v, u);
    }

    int ans = 0;
    for (int v = 0; v < N; ++v) {
        ans += std::max(0, (int)tree[v].size() - 2);
    }
    std::cout << ans << std::endl;
    return 0;
}
0