結果
問題 | No.1153 ねこちゃんゲーム |
ユーザー | IKyopro |
提出日時 | 2020-08-07 23:07:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,021 bytes |
コンパイル時間 | 2,277 ms |
コンパイル使用メモリ | 214,244 KB |
実行使用メモリ | 86,100 KB |
最終ジャッジ日時 | 2024-09-24 23:44:49 |
合計ジャッジ時間 | 24,535 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | AC | 297 ms
40,788 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 282 ms
41,008 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 302 ms
41,048 KB |
testcase_26 | WA | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | AC | 226 ms
41,148 KB |
testcase_34 | RE | - |
testcase_35 | AC | 227 ms
41,216 KB |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | WA | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <class T> using vec = vector<T>; template <class T> using vvec = vector<vec<T>>; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N,M; cin >> N >> M; vec<int> A(M); set<int> s; for(int i=0;i<M;i++){ cin >> A[i]; A[i]--; s.insert(A[i]); } vvec<int> g(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); } vec<int> dp(N); { auto dfs = [&](auto&& self,int cur,int par)->void{ bool exist = false; for(auto& to:g[cur]) if(to!=par){ self(self,to,cur); exist |= !dp[to]; } dp[cur] = exist; }; dfs(dfs,0,-1); } vec<int> dp2(N); vvec<int> child[2]; for(int i=0;i<2;i++) child[i] = vvec<int>(N); { auto dfs = [&](auto&& self,int cur,int par,int parg)->void{ int n = g[cur].size(); vec<int> L(n+1,0),R(n+1,0); for(int i=0;i<n;i++){ int to = g[cur][i]; L[i+1] = L[i] || !(to!=par? dp[to]:parg); } for(int i=n-1;i>=0;i--){ int to = g[cur][i]; R[i] = R[i+1] || !(to!=par? dp[to]:parg); } dp2[cur] = L[n]; for(int i=0;i<n;i++){ int to = g[cur][i]; child[(to!=par? dp[to]:parg)][cur].push_back(to); if(to==par) continue; self(self,to,cur,L[i]||R[i+1]); } }; dfs(dfs,0,-1,0); } int win = 0; for(int i=0;i<M;i++) win ^= dp2[A[i]]; if(!win){ cout << -1 << " " << -1 << "\n"; return 0; } assert(false); for(int i=0;i<M;i++){ for(auto& x:child[!dp2[A[i]]][A[i]]){ cout << i+1 << " " << x+1 << "\n"; return 0; } } }