結果
問題 | No.2800 Game on Tree Inverse |
ユーザー | 沙耶花 |
提出日時 | 2024-06-28 22:12:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,725 bytes |
コンパイル時間 | 4,414 ms |
コンパイル使用メモリ | 271,496 KB |
実行使用メモリ | 814,700 KB |
最終ジャッジ日時 | 2024-06-28 22:12:57 |
合計ジャッジ時間 | 8,793 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 vector<vector<int>> gs; vector<vector<vector<int>>> vs; vector<vector<int>> E; int G[200005]; void dfs(int cv,int pv){ vector<int> nxt; int X = 0; rep(i,E[cv].size()){ int to = E[cv][i]; if(to==pv)continue; dfs(to,cv); nxt.push_back(to); X ^= G[to]; } vector<int> ngs; rep(i,nxt.size()){ rep(j,gs[nxt[i]].size()){ gs[nxt[i]][j] ^= X ^ G[nxt[i]]; ngs.push_back(gs[nxt[i]][j]); } } ngs.push_back(X); sort(ngs.begin(),ngs.end()); ngs.erase(unique(ngs.begin(),ngs.end()),ngs.end()); gs[cv] = ngs; vs[cv].resize(ngs.size()); rep(i,nxt.size()){ rep(j,gs[nxt[i]].size()){ int d = lower_bound(ngs.begin(),ngs.end(),gs[nxt[i]][j])-ngs.begin(); if(vs[cv][d].size() < vs[nxt[i]][j].size()){ swap(vs[cv][d],vs[nxt[i]][j]); } while(vs[nxt[i]][j].size()){ int v = vs[nxt[i]][j].back(); vs[nxt[i]][j].pop_back(); vs[cv][d].push_back(v); } } gs[nxt[i]].clear(); vs[nxt[i]].clear(); } rep(i,ngs.size()){ if(ngs[i]==X){ vs[cv][i].push_back(cv); } } rep(i,1000000){ if(i>=ngs.size() || ngs[i]!=i){ G[cv] = i; break; } } } int main(){ int n; cin>>n; gs.resize(n); vs.resize(n); E.resize(n); rep(i,n-1){ int a,b; cin>>a>>b; a--,b--; E[a].push_back(b); E[b].push_back(a); } dfs(0,-1); sort(vs[0][0].begin(),vs[0][0].end()); cout<<"Alice"<<endl; cout<<vs[0][0].size()<<endl; rep(i,vs[0][0].size()){ if(i!=0)cout<<' '; cout<<vs[0][0][i]+1; } cout<<endl; return 0; }