結果

問題 No.763 Noelちゃんと木遊び
ユーザー T101010101T101010101
提出日時 2023-02-06 19:34:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 3,520 bytes
コンパイル時間 3,639 ms
コンパイル使用メモリ 267,952 KB
実行使用メモリ 16,956 KB
最終ジャッジ日時 2023-09-18 06:09:46
合計ジャッジ時間 6,110 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
16,956 KB
testcase_01 AC 29 ms
5,360 KB
testcase_02 AC 76 ms
8,304 KB
testcase_03 AC 50 ms
6,780 KB
testcase_04 AC 34 ms
5,784 KB
testcase_05 AC 48 ms
6,396 KB
testcase_06 AC 95 ms
9,320 KB
testcase_07 AC 90 ms
9,412 KB
testcase_08 AC 52 ms
6,832 KB
testcase_09 AC 32 ms
5,672 KB
testcase_10 AC 13 ms
4,376 KB
testcase_11 AC 99 ms
9,560 KB
testcase_12 AC 84 ms
8,792 KB
testcase_13 AC 86 ms
8,768 KB
testcase_14 AC 76 ms
7,976 KB
testcase_15 AC 48 ms
6,760 KB
testcase_16 AC 8 ms
4,380 KB
testcase_17 AC 49 ms
6,836 KB
testcase_18 AC 96 ms
9,628 KB
testcase_19 AC 86 ms
8,836 KB
testcase_20 AC 86 ms
8,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros

#include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
// using namespace __gnu_cxx;

// #include <boost/multiprecision/cpp_int.hpp>
// namespace mp = boost::multiprecision;
// using Bint = mp::cpp_int;

#define TO_STRING(var) # var
#define pb emplace_back
#define int ll
#define endl '\n'

using ll = long long;
using ld = long double;
const ld PI = acos(-1);
const ld EPS = 1e-10;
const int INF = 1 << 30;
const ll INFL = 1LL << 61;
// const int MOD = 998244353;
const int MOD = 1000000007;

// __attribute__((constructor))
// void constructor() {
//     ios::sync_with_stdio(false);
//     cin.tie(nullptr);
//     // ifstream in("input.txt");
//     // cin.rdbuf(in.rdbuf());
//     cout << fixed << setprecision(15);
// }

template<int mod> class modint{
public:
    int val = 0;
    modint(int x = 0) { while (x < 0) x += mod; val = x % mod; }
    modint(const modint &r) { val = r.val; }

    modint operator -() { return modint(-val); }
    modint operator +(const modint &r) { return modint(*this) += r; }
    modint operator -(const modint &r) { return modint(*this) -= r; }
    modint operator *(const modint &r) { return modint(*this) *= r; }
    modint operator /(const modint &r) { return modint(*this) /= r; }

    modint &operator +=(const modint &r) {
        val += r.val;
        if (val >= mod) val -= mod;
        return *this;
    }
    modint &operator -=(const modint &r) {
        if (val < r.val) val += mod;
        val -= r.val;
        return *this;
    }
    modint &operator *=(const modint &r) {
        val = val * r.val % mod;
        return *this;
    }
    modint &operator /=(const modint &r) {
        int a = r.val, b = mod, u = 1, v = 0;
        while (b) {
            int t = a / b;
            a -= t * b; swap(a, b);
            u -= t * v; swap(u, v);
        }
        val = val * u % mod;
        if (val < 0) val += mod;
        return *this;
    }

    bool operator ==(const modint& r) { return this -> val == r.val; }
    bool operator <(const modint& r) { return this -> val < r.val; }
    bool operator !=(const modint& r) { return this -> val != r.val; }
};

using mint = modint<MOD>;

istream &operator >>(istream &is, mint& x) {
    int t; is >> t;
    x = t;
    return (is);
}
ostream &operator <<(ostream &os, const mint& x) {
    return os << x.val;
}

mint modpow(const mint &a, int N) {
    if (N == 0) return 1;
    mint t = modpow(a, N / 2);
    t = t * t;
    if (N & 1) t = t * a;
    return t;
}

int modpow(int x, int N, int mod) {
    int ret = 1;
    while (N > 0) {
        if (N % 2 == 1) ret = ret * x % mod;
        x = x * x % mod;
        N /= 2;
    }
    return ret;
}

int ceil(int x, int y) { return (x > 0 ? (x + y - 1) / y : x / y); }

#pragma endregion

vector<int> ans;
vector<bool> flag;
void dfs(vector<vector<int>> &G, int v, int p) {
    flag[v] = true;
    
    bool f = false;
    for (auto nv : G[v]) {
        if (flag[nv]) continue;
        dfs(G, nv, v);
        if (ans[nv]) f = true;
    }

    if (!f) ans[v] = true;
}

signed main() {
    int N;
    cin >> N;

    vector<vector<int>> G(N);
    for (int i = 0; i < N - 1; i++) {
        int u, v;
        cin >> u >> v;
        u--; v--;
        G[u].pb(v);
        G[v].pb(u);
    }
    
    ans.assign(N, 0);
    flag.assign(N, false);

    dfs(G, 0, -1);

    int cnt = 0;
    for (int i = 0; i < N; i++) {
        if (ans[i]) {
            // cout << i + 1 << " ";
            cnt++;
        }
    }
    cout << cnt << endl;
}
0