結果
問題 | No.2618 除霊 |
ユーザー | KKT89 |
提出日時 | 2024-01-30 10:54:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,588 bytes |
コンパイル時間 | 2,445 ms |
コンパイル使用メモリ | 218,520 KB |
実行使用メモリ | 17,388 KB |
最終ジャッジ日時 | 2024-09-28 10:13:05 |
合計ジャッジ時間 | 9,446 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 137 ms
16,468 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 112 ms
17,104 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 140 ms
16,512 KB |
ソースコード
#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"; } } }