結果
問題 | No.2726 Rooted Tree Nim |
ユーザー | eve__fuyuki |
提出日時 | 2024-04-12 23:20:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 987 bytes |
コンパイル時間 | 2,424 ms |
コンパイル使用メモリ | 209,304 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-10-02 23:48:59 |
合計ジャッジ時間 | 5,122 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 77 ms
5,248 KB |
testcase_02 | AC | 101 ms
7,808 KB |
testcase_03 | AC | 172 ms
15,744 KB |
testcase_04 | AC | 177 ms
15,744 KB |
testcase_05 | AC | 103 ms
17,332 KB |
testcase_06 | AC | 101 ms
17,336 KB |
testcase_07 | AC | 122 ms
17,280 KB |
testcase_08 | AC | 122 ms
17,536 KB |
testcase_09 | AC | 88 ms
6,784 KB |
testcase_10 | AC | 90 ms
6,736 KB |
testcase_11 | AC | 91 ms
8,064 KB |
testcase_12 | AC | 123 ms
16,000 KB |
testcase_13 | AC | 91 ms
6,644 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } void solve() { int n, k; cin >> n >> k; vector<vector<int>> g(n); for (int i = 0; i < n - 1; i++) { int x, y; cin >> x >> y; x--, y--; g[x].push_back(y); g[y].push_back(x); } vector<int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } vector<int> dep(n, -1); deque<int> q{0}; dep[0] = 0; int grundy = 0; while (!q.empty()) { int x = q.front(); q.pop_front(); for (int y : g[x]) { if (dep[y] == -1) { dep[y] = dep[x] + 1; q.push_back(y); } } if (dep[x] % 2) { grundy ^= (a[x] % (k + 1)); } } cout << (grundy == 0 ? "P" : "K") << '\n'; } int main() { fast_io(); int t; cin >> t; for (; t--;) { solve(); } }