結果
問題 | No.2726 Rooted Tree Nim |
ユーザー | GGanari |
提出日時 | 2024-04-12 23:03:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 174 ms / 2,000 ms |
コード長 | 1,127 bytes |
コンパイル時間 | 2,265 ms |
コンパイル使用メモリ | 204,952 KB |
実行使用メモリ | 30,564 KB |
最終ジャッジ日時 | 2024-10-02 23:43:28 |
合計ジャッジ時間 | 4,512 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 65 ms
6,820 KB |
testcase_02 | AC | 99 ms
7,472 KB |
testcase_03 | AC | 167 ms
30,516 KB |
testcase_04 | AC | 174 ms
30,564 KB |
testcase_05 | AC | 93 ms
15,568 KB |
testcase_06 | AC | 89 ms
15,792 KB |
testcase_07 | AC | 117 ms
16,072 KB |
testcase_08 | AC | 113 ms
16,108 KB |
testcase_09 | AC | 83 ms
6,820 KB |
testcase_10 | AC | 85 ms
6,820 KB |
testcase_11 | AC | 87 ms
7,680 KB |
testcase_12 | AC | 115 ms
14,440 KB |
testcase_13 | AC | 86 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> #define INF 1000000001LL #define LNF 1000000000000000001LL #define MOD 998244353LL #define MAX 200001 #define long long long #define all(x) x.begin(),x.end() using namespace std; void dfs(int x, int par,vector<int> graph[], vector<int>&depth) { for(int y : graph[x]) { if(y == par) continue; depth[y] = depth[x]+1; dfs(y,x,graph,depth); } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int t; cin >> t; while(t--) { int n,k; cin >> n >> k; vector<int> graph[n+1]; for(int i = 0; i<n-1; i++) { int a,b; cin >> a >> b; graph[a].push_back(b); graph[b].push_back(a); } vector<int> depth(n+1); dfs(1,0,graph,depth); int grundy = 0; for(int i = 1; i<=n; i++) { int x; cin >> x; if(depth[i]&1) grundy^=x%(k+1); } if(grundy) cout << "K\n"; else cout << "P\n"; } return 0; }