結果

問題 No.2800 Game on Tree Inverse
ユーザー aditya jainaditya jain
提出日時 2024-06-28 23:22:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,396 bytes
コンパイル時間 4,127 ms
コンパイル使用メモリ 272,656 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-06-28 23:22:48
合計ジャッジ時間 16,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 331 ms
63,360 KB
testcase_04 WA -
testcase_05 AC 197 ms
35,952 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 177 ms
36,820 KB
testcase_10 WA -
testcase_11 AC 292 ms
60,672 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 322 ms
55,184 KB
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 AC 261 ms
54,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 311 ms
68,992 KB
testcase_33 WA -
testcase_34 AC 276 ms
49,668 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
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 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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]]);
            grundy[u] = grundy[t[u][0]] + 1;
            return;
        }
        int max_mex_diff = 1;
        while(max_mex_diff <= sub[t[u][1]]) max_mex_diff <<= 1;
        max_mex_diff *= 2;
        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();
}
0