結果

問題 No.2618 除霊
ユーザー KKT89KKT89
提出日時 2024-01-30 10:56:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,592 bytes
コンパイル時間 2,596 ms
コンパイル使用メモリ 219,376 KB
実行使用メモリ 17,384 KB
最終ジャッジ日時 2024-09-28 10:13:19
合計ジャッジ時間 11,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 137 ms
16,384 KB
testcase_07 AC 128 ms
16,256 KB
testcase_08 AC 144 ms
16,768 KB
testcase_09 AC 141 ms
16,256 KB
testcase_10 AC 146 ms
16,560 KB
testcase_11 AC 113 ms
16,484 KB
testcase_12 AC 133 ms
16,484 KB
testcase_13 AC 90 ms
17,288 KB
testcase_14 AC 132 ms
17,108 KB
testcase_15 AC 86 ms
16,868 KB
testcase_16 AC 89 ms
16,812 KB
testcase_17 AC 119 ms
17,260 KB
testcase_18 AC 116 ms
16,732 KB
testcase_19 AC 99 ms
17,272 KB
testcase_20 AC 85 ms
16,948 KB
testcase_21 AC 112 ms
16,664 KB
testcase_22 AC 123 ms
17,360 KB
testcase_23 AC 105 ms
17,384 KB
testcase_24 AC 99 ms
17,004 KB
testcase_25 AC 117 ms
17,296 KB
testcase_26 AC 118 ms
16,632 KB
testcase_27 AC 112 ms
16,928 KB
testcase_28 AC 103 ms
17,324 KB
testcase_29 AC 124 ms
17,264 KB
testcase_30 AC 138 ms
17,260 KB
testcase_31 AC 152 ms
16,592 KB
testcase_32 AC 118 ms
16,780 KB
testcase_33 AC 129 ms
16,596 KB
testcase_34 AC 117 ms
16,148 KB
testcase_35 AC 138 ms
16,528 KB
testcase_36 AC 162 ms
16,752 KB
testcase_37 AC 144 ms
16,344 KB
testcase_38 AC 149 ms
16,764 KB
testcase_39 AC 157 ms
16,720 KB
testcase_40 AC 161 ms
16,308 KB
testcase_41 AC 153 ms
16,764 KB
testcase_42 AC 143 ms
16,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) { return (ull)rng() % B; }

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;
    vector<vector<int>> g(n);
    vector<int> deg(n), cnt(n), cnt2(n);
    for (int i = 0; i < n - 1; i++) {
        int x, y;
        cin >> x >> y;
        x -= 1, y -= 1;
        g[x].push_back(y);
        g[y].push_back(x);
    }
    int m;
    cin >> m;
    vector<bool> f(n);
    for (int i = 0; i < m; i++) {
        int a;
        cin >> a;
        a -= 1;
        f[a] = true;
        for (int b : g[a]) {
            deg[b] += 1;
        }
    }
    int sum = 0;
    for (int i = 0; i < n; i++) {
        sum += (deg[i] >= 1 or f[i]);
        for (int t : g[i]) {
            cnt[i] += (deg[t] == 1);
            cnt2[i] += (deg[t] == 1 and !f[t]);
        }
    }
    for (int i = 0; i < n; i++) {
        int res = sum;
        if (deg[i] >= 1 or f[i]) res -= 1;

        if (f[i]) {
            res -= cnt[i];
            for (int t : g[i]) {
                if (f[t]) {
                    res -= cnt2[t];
                }
            }
            cout << res << "\n";
        } else {
            for (int t : g[i]) {
                if (f[t]) {
                    res -= cnt2[t] + (deg[t] == 0);
                    if (deg[i] == 1) res += 1;
                }
            }
            cout << res << "\n";
        }
    }
}
0