結果
問題 | No.2726 Rooted Tree Nim |
ユーザー | FplusFplusF |
提出日時 | 2024-04-12 23:06:43 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 170 ms / 2,000 ms |
コード長 | 1,184 bytes |
コンパイル時間 | 2,943 ms |
コンパイル使用メモリ | 253,452 KB |
実行使用メモリ | 25,056 KB |
最終ジャッジ日時 | 2024-10-02 23:44:27 |
合計ジャッジ時間 | 5,485 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,824 KB |
testcase_01 | AC | 55 ms
6,820 KB |
testcase_02 | AC | 93 ms
8,192 KB |
testcase_03 | AC | 170 ms
24,956 KB |
testcase_04 | AC | 169 ms
25,056 KB |
testcase_05 | AC | 105 ms
17,208 KB |
testcase_06 | AC | 111 ms
17,332 KB |
testcase_07 | AC | 128 ms
17,996 KB |
testcase_08 | AC | 123 ms
17,976 KB |
testcase_09 | AC | 82 ms
6,816 KB |
testcase_10 | AC | 84 ms
6,928 KB |
testcase_11 | AC | 83 ms
8,320 KB |
testcase_12 | AC | 108 ms
16,276 KB |
testcase_13 | AC | 82 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> inline bool chmin(T &a,T b){ if(a>b){ a=b; return true; } return false; } template<class T> inline bool chmax(T &a,T b){ if(a<b){ a=b; return true; } return false; } ll n,k,d=0,ans=0; vector<ll> a; vector<vector<ll>> g; void dfs(ll x,ll p){ if(d%2==1) ans^=a[x]%(k+1); for(auto i:g[x]){ if(i==p) continue; d++; dfs(i,x); d--; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll t; cin >> t; while(t--){ cin >> n >> k; g.assign(n,{}); rep(i,n-1){ ll x,y; cin >> x >> y; x--; y--; g[x].push_back(y); g[y].push_back(x); } a.assign(n,0); rep(i,n) cin >> a[i]; d=0; ans=0; dfs(0,-1); if(ans==0) cout << "P\n"; else cout << "K\n"; } }