結果

問題 No.1153 ねこちゃんゲーム
ユーザー chocoruskchocorusk
提出日時 2020-08-09 01:30:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 421 ms / 2,500 ms
コード長 2,360 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 141,952 KB
実行使用メモリ 70,016 KB
最終ジャッジ日時 2024-10-02 12:23:10
合計ジャッジ時間 26,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,192 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 7 ms
8,192 KB
testcase_03 AC 7 ms
8,192 KB
testcase_04 AC 7 ms
8,192 KB
testcase_05 AC 7 ms
8,192 KB
testcase_06 AC 7 ms
8,192 KB
testcase_07 AC 350 ms
19,328 KB
testcase_08 AC 357 ms
19,328 KB
testcase_09 AC 355 ms
19,328 KB
testcase_10 AC 366 ms
19,328 KB
testcase_11 AC 347 ms
19,456 KB
testcase_12 AC 348 ms
19,200 KB
testcase_13 AC 330 ms
19,328 KB
testcase_14 AC 349 ms
19,328 KB
testcase_15 AC 342 ms
19,200 KB
testcase_16 AC 335 ms
19,200 KB
testcase_17 AC 351 ms
19,328 KB
testcase_18 AC 344 ms
19,328 KB
testcase_19 AC 351 ms
19,328 KB
testcase_20 AC 334 ms
19,328 KB
testcase_21 AC 339 ms
19,456 KB
testcase_22 AC 338 ms
19,328 KB
testcase_23 AC 352 ms
19,328 KB
testcase_24 AC 347 ms
19,328 KB
testcase_25 AC 356 ms
19,328 KB
testcase_26 AC 331 ms
19,456 KB
testcase_27 AC 397 ms
61,312 KB
testcase_28 AC 412 ms
70,016 KB
testcase_29 AC 421 ms
65,024 KB
testcase_30 AC 418 ms
64,640 KB
testcase_31 AC 380 ms
42,368 KB
testcase_32 AC 262 ms
19,652 KB
testcase_33 AC 244 ms
19,648 KB
testcase_34 AC 265 ms
19,652 KB
testcase_35 AC 273 ms
19,784 KB
testcase_36 AC 254 ms
19,596 KB
testcase_37 AC 213 ms
19,004 KB
testcase_38 AC 151 ms
18,876 KB
testcase_39 AC 176 ms
19,652 KB
testcase_40 AC 212 ms
18,868 KB
testcase_41 AC 149 ms
18,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int n, m;
int a[200020];
vector<int> g[200020];
int dp[200020];
void dfs(int x, int p){
    set<int> st;
    for(auto y:g[x]){
        if(y==p) continue;
        dfs(y, x);
        st.insert(dp[y]);
    }
    for(int i=0; ; i++){
        if(st.find(i)==st.end()){
            dp[x]=i;
            break;
        }
    }
}
int dp2[200020];
int gr[200020];
int par[200020];
void dfs2(int x, int p){
    par[x]=p;
    map<int, int> mp;
    for(auto y:g[x]){
        if(y==p) mp[dp2[x]]++;
        else mp[dp[y]]++;
    }
    int mn;
    for(int i=0; ; i++){
        if(mp.find(i)==mp.end()){
            mn=i; break;
        }
    }
    gr[x]=mn;
    for(auto y:g[x]){
        if(y==p) continue;
        if(dp[y]>mn || mp[dp[y]]>1){
            dp2[y]=mn;
        }else{
            dp2[y]=dp[y];
        }
    }
    for(auto y:g[x]){
        if(y==p) continue;
        dfs2(y, x);
    }
}
int b[200020];
int main()
{
    cin>>n>>m;
    for(int i=0; i<m; i++){
        cin>>a[i]; a[i]--;
        b[a[i]]=i+1;
    }
    for(int i=0; i<n-1; i++){
        int u, v; cin>>u>>v;
        u--; v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    dfs(0, -1);
    dfs2(0, -1);
    int s=0;
    for(int i=0; i<m; i++){
        s^=gr[a[i]];
    }
    if(s==0){
        cout<<-1<<" "<<-1<<endl;
    }else{
        for(int i=0; i<n; i++){
            if(!b[i]) continue;
            for(auto y:g[i]){
                if(y==par[i]){
                    if((s^gr[i])==dp2[i]){
                        cout<<b[i]<<" "<<y+1<<endl;
                        return 0;
                    }
                }else{
                    if((s^gr[i])==dp[y]){
                        cout<<b[i]<<" "<<y+1<<endl;
                        return 0;
                    }
                }
            }
        }
    }
    return 0;
}
0