結果
問題 | No.2726 Rooted Tree Nim |
ユーザー | GOTKAKO |
提出日時 | 2024-04-12 22:08:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 198 ms / 2,000 ms |
コード長 | 820 bytes |
コンパイル時間 | 2,117 ms |
コンパイル使用メモリ | 207,884 KB |
実行使用メモリ | 23,296 KB |
最終ジャッジ日時 | 2024-10-02 23:20:51 |
合計ジャッジ時間 | 4,837 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 198 ms
5,248 KB |
testcase_02 | AC | 102 ms
7,296 KB |
testcase_03 | AC | 179 ms
23,296 KB |
testcase_04 | AC | 177 ms
23,296 KB |
testcase_05 | AC | 105 ms
15,800 KB |
testcase_06 | AC | 110 ms
15,800 KB |
testcase_07 | AC | 117 ms
16,128 KB |
testcase_08 | AC | 120 ms
16,128 KB |
testcase_09 | AC | 83 ms
6,272 KB |
testcase_10 | AC | 87 ms
6,348 KB |
testcase_11 | AC | 90 ms
7,680 KB |
testcase_12 | AC | 126 ms
14,592 KB |
testcase_13 | AC | 87 ms
6,292 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ int N,K; cin >> N >> K; vector<vector<int>> Graph(N); for(int i=0; i<N-1; i++){ int u,v; cin >> u >> v; u--; v--; Graph.at(u).push_back(v); Graph.at(v).push_back(u); } vector<int> A(N); for(auto &a : A) cin >> a; int Xor = 0; K++; auto dfs = [&](auto dfs,int pos,int back,int d) -> void { Xor ^= d%2 * (A.at(pos)%K); for(auto to : Graph.at(pos)){ if(to == back) continue; dfs(dfs,to,pos,d+1); } }; dfs(dfs,0,-1,0); if(Xor) cout << "K" << endl; else cout << "P" << endl; } }