結果

問題 No.2618 除霊
ユーザー Re0denXRe0denX
提出日時 2024-01-29 00:12:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,267 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 212,748 KB
実行使用メモリ 45,184 KB
最終ジャッジ日時 2024-09-28 09:58:24
合計ジャッジ時間 14,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 251 ms
34,708 KB
testcase_07 AC 227 ms
34,508 KB
testcase_08 AC 263 ms
37,164 KB
testcase_09 AC 257 ms
35,684 KB
testcase_10 AC 273 ms
34,868 KB
testcase_11 AC 170 ms
31,628 KB
testcase_12 AC 255 ms
37,236 KB
testcase_13 AC 237 ms
44,284 KB
testcase_14 AC 200 ms
35,552 KB
testcase_15 AC 122 ms
28,620 KB
testcase_16 AC 123 ms
29,056 KB
testcase_17 AC 178 ms
37,520 KB
testcase_18 AC 192 ms
43,228 KB
testcase_19 AC 131 ms
29,808 KB
testcase_20 AC 116 ms
28,864 KB
testcase_21 AC 170 ms
35,684 KB
testcase_22 AC 199 ms
45,184 KB
testcase_23 AC 224 ms
44,000 KB
testcase_24 AC 229 ms
43,352 KB
testcase_25 AC 238 ms
40,312 KB
testcase_26 AC 191 ms
35,088 KB
testcase_27 AC 226 ms
43,052 KB
testcase_28 AC 224 ms
44,396 KB
testcase_29 AC 230 ms
40,388 KB
testcase_30 AC 208 ms
36,424 KB
testcase_31 AC 265 ms
37,436 KB
testcase_32 AC 155 ms
29,060 KB
testcase_33 AC 195 ms
32,416 KB
testcase_34 AC 200 ms
33,456 KB
testcase_35 AC 231 ms
35,468 KB
testcase_36 AC 232 ms
37,172 KB
testcase_37 AC 246 ms
36,476 KB
testcase_38 AC 260 ms
37,500 KB
testcase_39 AC 263 ms
37,088 KB
testcase_40 AC 266 ms
36,104 KB
testcase_41 AC 259 ms
36,116 KB
testcase_42 AC 269 ms
35,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#ifdef LOCAL
#include "../library/misc/debug.h"
#else 
#define debug(...) 42
#endif // LOCAL

int main() {
  std::cin.tie(nullptr)->sync_with_stdio(false);
  int N; std::cin >> N;
  std::vector<std::vector<int>> adj(N);
  for (int i = 1; i < N; i++) {
    int u, v; std::cin >> u >> v; u--, v--;
    adj[u].push_back(v), adj[v].push_back(u);
  }
  int M; std::cin >> M;
  std::vector<std::set<int>> S(N);

  std::vector<std::vector<int>> attack(N);
  std::vector<char> exists(N);
  for (int i = 0; i < M; i++) {
    int u; std::cin >> u;
    u--;
    attack[u].push_back(u);
    exists[u] = true;
    for (auto &v : adj[u]) attack[v].push_back(u);
  }

  int tot = 0;
  for (int i = 0; i < N; i++) {
    tot += (!attack[i].empty());
    if (attack[i].size() == 1U) S[attack[i][0]].insert(i);
  }

  debug(attack);
  debug(S);
  for (int i = 0; i < N; i++) {
    int ans = tot;
    if (attack[i].size() != 0U) ans--;
    for (auto &v : adj[i]) {
      if (attack[v].size()) {
        int now = exists[i] + exists[v];
        if (attack[v].size() == now) ans--;
      }

      ans -= static_cast<int>(S[v].size());
      if (S[v].count(i)) ans++;
      if (S[v].count(v)) ans++;
    }

    std::cout << ans << "\n";
  }
}
0