結果

問題 No.2726 Rooted Tree Nim
ユーザー kotatsugamekotatsugame
提出日時 2024-04-12 21:55:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 70,144 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-10-02 23:16:04
合計ジャッジ時間 3,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,600 KB
testcase_01 AC 58 ms
9,472 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 171 ms
29,056 KB
testcase_04 AC 152 ms
29,056 KB
testcase_05 AC 87 ms
17,256 KB
testcase_06 AC 84 ms
17,132 KB
testcase_07 AC 102 ms
17,664 KB
testcase_08 AC 101 ms
17,664 KB
testcase_09 AC 73 ms
12,544 KB
testcase_10 AC 73 ms
12,288 KB
testcase_11 AC 76 ms
13,184 KB
testcase_12 AC 106 ms
17,024 KB
testcase_13 AC 71 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int N,K;
vector<int>G[2<<17];
int A[2<<17];
int dfs(int u,int p,int d)
{
	int ret=0;
	if(d%2==1)ret^=A[u]%(K+1);
	for(int v:G[u])if(v!=p)ret^=dfs(v,u,d+1);
	return ret;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int T;cin>>T;
	for(;T--;)
	{
		cin>>N>>K;
		for(int i=0;i<N;i++)G[i].clear();
		for(int i=1;i<N;i++)
		{
			int u,v;cin>>u>>v;
			u--,v--;
			G[u].push_back(v);
			G[v].push_back(u);
		}
		for(int i=0;i<N;i++)cin>>A[i];
		cout<<(dfs(0,-1,0)?"K\n":"P\n");
	}
}
0