結果

問題 No.2618 除霊
ユーザー zawakasuzawakasu
提出日時 2024-01-26 22:15:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 2,207 bytes
コンパイル時間 3,373 ms
コンパイル使用メモリ 257,596 KB
実行使用メモリ 27,720 KB
最終ジャッジ日時 2024-09-28 08:20:10
合計ジャッジ時間 11,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 149 ms
18,048 KB
testcase_07 AC 138 ms
18,056 KB
testcase_08 AC 152 ms
20,172 KB
testcase_09 AC 163 ms
20,604 KB
testcase_10 AC 146 ms
21,068 KB
testcase_11 AC 120 ms
17,044 KB
testcase_12 AC 163 ms
19,912 KB
testcase_13 AC 92 ms
17,756 KB
testcase_14 AC 121 ms
21,456 KB
testcase_15 AC 86 ms
16,252 KB
testcase_16 AC 88 ms
16,324 KB
testcase_17 AC 131 ms
22,204 KB
testcase_18 AC 145 ms
26,576 KB
testcase_19 AC 95 ms
16,840 KB
testcase_20 AC 98 ms
16,316 KB
testcase_21 AC 130 ms
21,212 KB
testcase_22 AC 144 ms
27,720 KB
testcase_23 AC 108 ms
18,232 KB
testcase_24 AC 109 ms
17,912 KB
testcase_25 AC 117 ms
20,064 KB
testcase_26 AC 169 ms
21,016 KB
testcase_27 AC 104 ms
17,800 KB
testcase_28 AC 105 ms
18,164 KB
testcase_29 AC 124 ms
20,036 KB
testcase_30 AC 143 ms
21,896 KB
testcase_31 AC 159 ms
20,072 KB
testcase_32 AC 124 ms
16,076 KB
testcase_33 AC 120 ms
17,132 KB
testcase_34 AC 111 ms
17,656 KB
testcase_35 AC 147 ms
18,632 KB
testcase_36 AC 156 ms
19,764 KB
testcase_37 AC 158 ms
19,940 KB
testcase_38 AC 146 ms
21,020 KB
testcase_39 AC 149 ms
21,144 KB
testcase_40 AC 157 ms
20,868 KB
testcase_41 AC 160 ms
21,480 KB
testcase_42 AC 168 ms
21,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>




namespace zawa {

using i16 = std::int16_t;
using i32 = std::int32_t;
using i64 = std::int64_t;
using i128 = __int128_t;

using u8 = std::uint8_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;

using usize = std::size_t;

} // namespace zawa


namespace zawa {

void SetFastIO() {
    std::cin.tie(nullptr)->sync_with_stdio(false);
}

void SetPrecision(u32 dig) {
    std::cout << std::fixed << std::setprecision(dig);
}

} // namespace zawa
using namespace zawa;

int main() {
    SetFastIO();

    int n; std::cin >> n;
    std::vector g(n, std::vector<int>{});
    for (int _{} ; _ < n - 1 ; _++) {
        int a, b; std::cin >> a >> b;
        a--; b--;
        g[a].emplace_back(b);
        g[b].emplace_back(a);
    }
    
    std::vector<int> pos(n, -1);
    int m; std::cin >> m;
    std::vector<int> ghost(m);
    for (int i{} ; auto& gh : ghost) {
        std::cin >> gh;
        gh--;
        pos[gh] = i;
        i++;
    }

    std::vector<int> count(n); 
    for (int i{} ; i < n ; i++) if (pos[i] != -1) {
        count[i]++;
        for (auto x : g[i]) {
            count[x]++;
        }
    }

    std::vector unique(m, std::vector<int>{});
    for (int i{} ; i < n ; i++) if (pos[i] != -1) {
        int gh{pos[i]};
        if (count[i] == 1) unique[gh].push_back(i);
        for (auto x : g[i]) {
            if (count[x] == 1) unique[gh].push_back(x);
        }
    }

    // for (auto x : count) std::cerr << x << ' ';
    // std::cerr << std::endl;

    int all{(int)std::ranges::count_if(count, [](const auto& i) -> bool { return i > 0; })};
    for (int v{} ; v < n ; v++) {
        int ans{all};
        if (pos[v] != -1) ans -= unique[pos[v]].size();
        for (auto x : g[v]) if (pos[x] != -1) ans -= unique[pos[x]].size();
        if (count[v] > 1) {
            ans--;
        }
        if (pos[v] != -1) {
            // std::cerr << v << " hello" << std::endl;
            for (auto x : g[v]) {
                // std::cerr << "travase " << x << std::endl;
                if (pos[x] == -1) continue;
                if (count[x] == 2) ans--;
            }
        }
        std::cout << ans << '\n';
    }
}
0