結果
問題 | No.2618 除霊 |
ユーザー | Rubikun |
提出日時 | 2024-01-26 21:51:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 188 ms / 2,000 ms |
コード長 | 1,579 bytes |
コンパイル時間 | 2,028 ms |
コンパイル使用メモリ | 203,668 KB |
実行使用メモリ | 33,164 KB |
最終ジャッジ日時 | 2024-09-28 08:03:54 |
合計ジャッジ時間 | 11,443 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
17,936 KB |
testcase_01 | AC | 7 ms
19,548 KB |
testcase_02 | AC | 5 ms
17,980 KB |
testcase_03 | AC | 7 ms
19,480 KB |
testcase_04 | AC | 7 ms
19,068 KB |
testcase_05 | AC | 8 ms
18,384 KB |
testcase_06 | AC | 126 ms
28,824 KB |
testcase_07 | AC | 126 ms
29,280 KB |
testcase_08 | AC | 164 ms
30,928 KB |
testcase_09 | AC | 173 ms
31,820 KB |
testcase_10 | AC | 188 ms
31,816 KB |
testcase_11 | AC | 102 ms
27,724 KB |
testcase_12 | AC | 165 ms
31,444 KB |
testcase_13 | AC | 112 ms
31,924 KB |
testcase_14 | AC | 153 ms
32,172 KB |
testcase_15 | AC | 85 ms
26,444 KB |
testcase_16 | AC | 84 ms
26,644 KB |
testcase_17 | AC | 120 ms
29,828 KB |
testcase_18 | AC | 136 ms
32,968 KB |
testcase_19 | AC | 102 ms
26,356 KB |
testcase_20 | AC | 90 ms
26,052 KB |
testcase_21 | AC | 114 ms
29,704 KB |
testcase_22 | AC | 137 ms
33,136 KB |
testcase_23 | AC | 114 ms
32,408 KB |
testcase_24 | AC | 118 ms
31,996 KB |
testcase_25 | AC | 145 ms
33,072 KB |
testcase_26 | AC | 160 ms
32,952 KB |
testcase_27 | AC | 115 ms
31,868 KB |
testcase_28 | AC | 114 ms
32,496 KB |
testcase_29 | AC | 137 ms
33,164 KB |
testcase_30 | AC | 161 ms
33,044 KB |
testcase_31 | AC | 149 ms
31,156 KB |
testcase_32 | AC | 97 ms
25,992 KB |
testcase_33 | AC | 119 ms
27,572 KB |
testcase_34 | AC | 119 ms
28,268 KB |
testcase_35 | AC | 141 ms
29,556 KB |
testcase_36 | AC | 147 ms
30,728 KB |
testcase_37 | AC | 147 ms
30,732 KB |
testcase_38 | AC | 162 ms
31,572 KB |
testcase_39 | AC | 180 ms
32,060 KB |
testcase_40 | AC | 170 ms
31,992 KB |
testcase_41 | AC | 182 ms
32,516 KB |
testcase_42 | AC | 187 ms
31,868 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=300005,INF=1<<30; vector<int> G[MAX]; vector<int> AT[MAX]; int ad[MAX],he[MAX]; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); int N;cin>>N; for(int i=0;i<N-1;i++){ int a,b;cin>>a>>b;a--;b--; G[a].push_back(b); G[b].push_back(a); } int M;cin>>M; for(int i=0;i<M;i++){ int x;cin>>x;x--; for(int to:G[x]){ AT[to].push_back(x); } AT[x].push_back(x); } int ans=0; for(int i=0;i<N;i++) if(si(AT[i])) ans++; for(int i=0;i<N;i++){ if(si(AT[i])==0) continue; if(si(AT[i])==1){ ad[AT[i][0]]++; }else if(si(AT[i])==2){ int x=AT[i][0],y=AT[i][1]; if(x==i||y==i){ he[x]++; he[y]++; }else{ he[i]++; } }else{ he[i]++; } } for(int i=0;i<N;i++){ for(int to:G[i]){ he[to]+=ad[i]; } he[i]+=ad[i]; } for(int i=0;i<N;i++) cout<<ans-he[i]<<"\n"; }