結果

問題 No.2726 Rooted Tree Nim
ユーザー MasKoaTSMasKoaTS
提出日時 2023-09-26 15:21:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 212,508 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-07-26 14:21:38
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 320 ms
5,248 KB
testcase_02 AC 229 ms
8,320 KB
testcase_03 AC 298 ms
17,408 KB
testcase_04 AC 306 ms
17,280 KB
testcase_05 AC 216 ms
18,888 KB
testcase_06 AC 219 ms
19,024 KB
testcase_07 AC 254 ms
18,908 KB
testcase_08 AC 254 ms
19,200 KB
testcase_09 AC 210 ms
7,168 KB
testcase_10 AC 216 ms
7,228 KB
testcase_11 AC 214 ms
8,576 KB
testcase_12 AC 246 ms
17,560 KB
testcase_13 AC 213 ms
7,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


char solve(int n, int k, vector<pair<int, int> >& edges, vector<int>& a){
    vector<vector<int> > graph(n, vector<int>({}));
    for(auto&[x, y] : edges){
        --x;  --y;
        graph[x].push_back(y);
        graph[y].push_back(x);
    }
    vector<int> depth_parity(n, -1);
    depth_parity[0] = 0;
    deque<int> que = { 0 };
    while(!que.empty()){
        int v_now = que.front();  que.pop_front();
        int p_next = depth_parity[v_now] ^ 1;
        for(int& v_next : graph[v_now]){
            if(depth_parity[v_next] != -1){
                continue;
            }
            depth_parity[v_next] = p_next;
            que.push_back(v_next);
        }
    }
    int grundy = 0;
    for(int i = 0; i < n; ++i){
        if(depth_parity[i] == 0){
            continue;
        }
        grundy ^= a[i] % (k + 1);
    }
    return (grundy != 0) ? 'K' : 'P';
}


int main(){
    int t;  cin >> t;

    for(int i = 0; i < t; ++i){
        int n, k;   cin >> n >> k;
        vector<pair<int, int> > edges(n - 1, pair<int, int>({}));
        for(auto&[x, y] : edges){
            cin >> x >> y;
        }
        vector<int> a(n);
        for(auto& x : a){
            cin >> x;
        }
        cout << solve(n, k, edges, a) << endl;
    }

    return 0;
}
0