結果
問題 | No.2800 Game on Tree Inverse |
ユーザー | Rubikun |
提出日時 | 2024-06-28 22:58:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,374 bytes |
コンパイル時間 | 1,976 ms |
コンパイル使用メモリ | 208,492 KB |
実行使用メモリ | 32,640 KB |
最終ジャッジ日時 | 2024-06-28 22:58:19 |
合計ジャッジ時間 | 8,757 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,368 KB |
testcase_01 | AC | 3 ms
10,368 KB |
testcase_02 | AC | 3 ms
10,368 KB |
testcase_03 | AC | 132 ms
31,104 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 90 ms
18,560 KB |
testcase_08 | WA | - |
testcase_09 | AC | 75 ms
19,556 KB |
testcase_10 | WA | - |
testcase_11 | AC | 135 ms
28,800 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 116 ms
26,240 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 86 ms
18,316 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 101 ms
26,924 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 125 ms
32,640 KB |
testcase_33 | WA | - |
testcase_34 | AC | 92 ms
24,108 KB |
testcase_35 | WA | - |
testcase_36 | AC | 4 ms
10,368 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 4 ms
10,368 KB |
testcase_41 | AC | 4 ms
10,240 KB |
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; int f(int x,int y){ if(x<y) swap(x,y); if(x==0) return 0; for(int t=28;t>=0;t--){ if(x&(1<<t)){ if(y&(1<<t)){ return (1<<(t+1))-1; }else{ int res=(1<<t); for(int s=t-1;s>=0;s--){ if(x&(1<<s)) res+=(1<<s); if(y&(1<<s)){ if(x&(1<<s)){ res+=(1<<s);res--; return res; }else{ return res+(1<<s)+f(x&((1<<s)-1),y&((1<<s)-1)); } } } return x; } } } return -1; } vector<int> G[MAX]; int sz[MAX]; void mk(int u,int p){ vector<int> X; for(int to:G[u]){ if(to==p) continue; mk(to,u); X.push_back(sz[to]); } sort(all(X)); reverse(all(X)); if(si(X)==0) sz[u]=1; else if(si(X)==1) sz[u]=X[0]+1; else{ sz[u]=f(X[0],X[1])+1; } } 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=sz[0]; solve(0,-1); //for(int i=0;i<N;i++) cout<<sz[i]<<endl; 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"; } }