結果

問題 No.806 木を道に
ユーザー hipopohipopo
提出日時 2020-01-28 19:06:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 979 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 113,636 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 16:22:01
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 14 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 49 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 47 ms
5,376 KB
testcase_15 AC 50 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 43 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 14 ms
5,376 KB
testcase_20 AC 43 ms
5,376 KB
testcase_21 AC 25 ms
5,376 KB
testcase_22 AC 58 ms
5,376 KB
testcase_23 AC 57 ms
5,376 KB
testcase_24 AC 31 ms
5,376 KB
testcase_25 AC 47 ms
5,376 KB
testcase_26 AC 18 ms
5,376 KB
testcase_27 AC 56 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <complex>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <vector>
#include <functional>

using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repr(i, s, n) for (int i = (s); i < (int)(n); i++)

using ll = long long;
using P = pair<int, int>;

const long long MOD = 1e9+7;

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; }

template<class T>
istream& operator>>(istream &is, vector<T> &v) {
    for (int i = 0; i < (int)v.size(); i++) cin >> v.at(i);
    return is;
}

int main() {
    int n;
    cin >> n;
    vector<int> deg(n);
    rep(i, n - 1) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        deg[a]++;
        deg[b]++;
    }

    int sum = 0;
    rep(i, n) sum += max(0, deg[i] - 2);
    cout << sum << endl;
}
0