結果
問題 | No.2800 Game on Tree Inverse |
ユーザー | aditya jain |
提出日時 | 2024-06-28 23:33:11 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,469 bytes |
コンパイル時間 | 4,058 ms |
コンパイル使用メモリ | 272,916 KB |
実行使用メモリ | 69,244 KB |
最終ジャッジ日時 | 2024-06-28 23:33:30 |
合計ジャッジ時間 | 14,329 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 330 ms
63,524 KB |
testcase_04 | AC | 166 ms
36,092 KB |
testcase_05 | AC | 144 ms
35,968 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 157 ms
36,796 KB |
testcase_10 | WA | - |
testcase_11 | AC | 272 ms
60,644 KB |
testcase_12 | AC | 270 ms
49,280 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 300 ms
55,168 KB |
testcase_16 | WA | - |
testcase_17 | AC | 321 ms
54,152 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 201 ms
50,688 KB |
testcase_25 | WA | - |
testcase_26 | AC | 157 ms
36,024 KB |
testcase_27 | AC | 232 ms
54,216 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 308 ms
69,244 KB |
testcase_33 | AC | 226 ms
49,280 KB |
testcase_34 | AC | 215 ms
49,672 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | WA | - |
testcase_45 | AC | 2 ms
5,376 KB |
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> #define mp make_pair #define pb push_back using namespace std; using ll = long long int; template<typename T> ostream& operator+(ostream& out, const vector<T> &vec){ for(const auto &x : vec){ out<<x<<" "; } out<<"\n"; return out; } template<typename T> ostream& operator*(ostream& out, const vector<T> &vec){ for(const auto &x : vec){ out+x; } return out; } template<typename T> istream& operator>>(istream& in, vector<T> &vec){ for(auto &x : vec){ in>>x; } return in; } struct my_set{ int offset = 0; set<int> s; auto view(){ return s | views::transform([&](int x){ return x ^ offset; }); } void add(int elem){ s.insert(elem ^ offset); } void add_offset(int more_offset){ offset ^= more_offset; } bool has(int elem){ return s.count(elem ^ offset); } int size() const { return s.size(); } void add_set(my_set &other){ if(other.size() > size()) swap(*this, other); for(int x : other.view()) add(x); } }; void solve(){ int n; cin>>n; vector<vector<int>> t(n); for(int i=1;i<n;i++){ int u,v; cin>>u>>v; --u; --v; t[u].push_back(v); t[v].push_back(u); } vector<my_set> grundy_vals(n); vector<int> grundy(n); vector<int> sub(n); auto dfs = [&](int u, int p, auto&& dfs) -> void { int ch = 0; int grundy_xor = 0; for(int v : t[u]){ if(v == p) continue; dfs(v, u, dfs); grundy_xor ^= grundy[v]; sub[u] += sub[v]; ch++; } if(ch == 0){ grundy_vals[u].add(0); grundy[u] = 1; return; } sort(t[u].begin(), t[u].end(), [&](int a, int b){ return grundy_vals[a].size() > grundy_vals[b].size(); }); for(auto &v : t[u]){ if(v == p) continue; grundy_vals[v].add_offset(grundy_xor ^ grundy[v]); grundy_vals[u].add_set(grundy_vals[v]); } sort(t[u].begin(), t[u].end(), [&](int a, int b){ return sub[a] > sub[b]; }); if(ch == 1){ grundy_vals[u].add(grundy[t[u][0]]); int mex = grundy[t[u][0]]; while(grundy_vals[u].has(mex)) mex++; grundy[u] = mex; return; } int max_mex_diff = 1; while(max_mex_diff <= sub[t[u][1]]) max_mex_diff <<= 1; max_mex_diff *= 8; grundy_vals[u].add(grundy_xor); int mex = max(0, grundy[t[u][0]] - max_mex_diff); while(grundy_vals[u].has(mex)) mex++; grundy[u] = mex; }; dfs(0, -1, dfs); vector<int> res; auto dfs2 = [&](int u, int p, int c_xor, auto&& dfs) -> void { int grundy_xor = 0; for(int v : t[u]){ if(v == p) continue; grundy_xor ^= grundy[v]; } if((grundy_xor ^ c_xor) == 0){ res.push_back(u + 1); } for(int v : t[u]){ if(v == p) continue; dfs(v, u, grundy_xor ^ c_xor ^ grundy[v], dfs); } }; dfs2(0, -1, 0, dfs2); if(res.size() == 0){ cout<<"Bob\n"; return; } cout<<"Alice\n"; cout<<res.size()<<"\n"; cout+res; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); solve(); }