結果
問題 | No.2800 Game on Tree Inverse |
ユーザー | Rubikun |
提出日時 | 2024-06-28 22:37:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,411 bytes |
コンパイル時間 | 2,059 ms |
コンパイル使用メモリ | 206,044 KB |
実行使用メモリ | 28,036 KB |
最終ジャッジ日時 | 2024-06-28 22:37:13 |
合計ジャッジ時間 | 9,055 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,368 KB |
testcase_01 | AC | 3 ms
10,460 KB |
testcase_02 | AC | 3 ms
10,496 KB |
testcase_03 | AC | 125 ms
27,392 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 65 ms
18,100 KB |
testcase_10 | WA | - |
testcase_11 | AC | 108 ms
24,520 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
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 | AC | 116 ms
21,556 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
ソースコード
#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=15<<26; vector<int> G[MAX]; int sz[MAX]; void mk(int u,int p){ sz[u]=1; for(int to:G[u]){ if(to==p) continue; mk(to,u); sz[u]+=sz[to]; } } vector<int> ans; int X; void solve(int u,int p){ int sv=X; X^=sz[u]; for(int to:G[u]){ if(to==p) continue; X^=sz[to]; } if(X==0) ans.push_back(u); for(int to:G[u]){ if(to==p) continue; solve(to,u); } X=sv; } 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); } mk(0,-1); X=N; solve(0,-1); if(si(ans)){ cout<<"Alice\n"; cout<<si(ans)<<"\n"; sort(all(ans)); for(int x:ans) cout<<x+1<<" "; cout<<"\n"; }else{ cout<<"Bob\n"; } }