結果

問題 No.2726 Rooted Tree Nim
ユーザー akiaki
提出日時 2024-11-08 14:04:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 206,320 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-11-08 14:04:58
合計ジャッジ時間 6,227 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 73 ms
5,248 KB
testcase_02 AC 107 ms
7,680 KB
testcase_03 AC 189 ms
23,680 KB
testcase_04 AC 187 ms
23,680 KB
testcase_05 AC 106 ms
16,568 KB
testcase_06 AC 107 ms
16,568 KB
testcase_07 AC 123 ms
16,896 KB
testcase_08 AC 144 ms
16,896 KB
testcase_09 AC 87 ms
6,528 KB
testcase_10 AC 90 ms
6,476 KB
testcase_11 AC 90 ms
7,808 KB
testcase_12 AC 122 ms
15,232 KB
testcase_13 AC 88 ms
6,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int t;
    cin>>t;
    while(t--){
        int n,k;
        cin>>n>>k;

        vector<vector<int>> g(n);
        rep(i,n-1){
            int x,y;
            cin>>x>>y;
            x--;y--;
            g[x].push_back(y);
            g[y].push_back(x);
        }
        vector<int> a(n);
        rep(i,n)cin>>a[i];

        vector<int> h(n,0);
        auto dfs = [&](auto dfs, int v, int p) -> void {
            for(int e: g[v]){
                if(e==p) continue;
                h[e] = h[v]+1;
                dfs(dfs, e, v);
            }
        };
        dfs(dfs, 0,-1);

        int x=0;
        rep(i,n) if(h[i]%2) x ^= a[i]%(k+1);
        if(x==0) cout << "P" << "\n";
        else cout << "K" << "\n";
    }
}
0