結果
問題 | No.1769 Don't Stop the Game |
ユーザー | kotatsugame |
提出日時 | 2021-11-26 23:39:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 766 ms / 3,000 ms |
コード長 | 954 bytes |
コンパイル時間 | 811 ms |
コンパイル使用メモリ | 85,420 KB |
実行使用メモリ | 65,224 KB |
最終ジャッジ日時 | 2024-06-29 18:37:02 |
合計ジャッジ時間 | 13,545 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,692 KB |
testcase_01 | AC | 5 ms
11,332 KB |
testcase_02 | AC | 5 ms
11,464 KB |
testcase_03 | AC | 6 ms
11,588 KB |
testcase_04 | AC | 4 ms
10,820 KB |
testcase_05 | AC | 6 ms
11,588 KB |
testcase_06 | AC | 5 ms
11,076 KB |
testcase_07 | AC | 6 ms
11,076 KB |
testcase_08 | AC | 356 ms
18,500 KB |
testcase_09 | AC | 319 ms
18,880 KB |
testcase_10 | AC | 519 ms
23,620 KB |
testcase_11 | AC | 259 ms
16,960 KB |
testcase_12 | AC | 315 ms
19,780 KB |
testcase_13 | AC | 323 ms
19,912 KB |
testcase_14 | AC | 344 ms
20,036 KB |
testcase_15 | AC | 376 ms
19,784 KB |
testcase_16 | AC | 472 ms
20,292 KB |
testcase_17 | AC | 613 ms
23,108 KB |
testcase_18 | AC | 720 ms
30,020 KB |
testcase_19 | AC | 730 ms
29,892 KB |
testcase_20 | AC | 763 ms
32,968 KB |
testcase_21 | AC | 766 ms
30,276 KB |
testcase_22 | AC | 766 ms
31,684 KB |
testcase_23 | AC | 298 ms
20,036 KB |
testcase_24 | AC | 305 ms
20,100 KB |
testcase_25 | AC | 170 ms
20,044 KB |
testcase_26 | AC | 439 ms
29,440 KB |
testcase_27 | AC | 231 ms
56,136 KB |
testcase_28 | AC | 598 ms
65,224 KB |
testcase_29 | AC | 581 ms
48,196 KB |
testcase_30 | AC | 586 ms
48,196 KB |
コンパイルメッセージ
main.cpp:43:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 43 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<map> using namespace std; int N; vector<pair<int,int> >G[2<<17]; int ch[2<<17],Xr[2<<17]; int add[2<<17]; map<int,int>ret; int dfs(int u,int p,int xr) { Xr[u]=xr; ch[u]=1; map<int,int>now; for(pair<int,int>&e:G[u]) { int v=e.first; if(v==p)continue; ch[u]+=dfs(v,u,xr^e.second); e.second=ret[Xr[u]]; if(now.size()<ret.size())now.swap(ret); for(pair<int,int>p:ret)now[p.first]+=p.second; } ret.swap(now); add[u]=ch[u]-ret[Xr[u]]; ret[Xr[u]]=ch[u]; return ch[u]; } long ans; void dfs2(int u,int p) { int tmp=ret[Xr[u]]; ans-=tmp-add[u]; for(pair<int,int>e:G[u]) { int v=e.first; if(v==p)continue; ret[Xr[u]]=e.second+N-ch[v]; dfs2(v,u); } ret[Xr[u]]=tmp; } main() { cin>>N; for(int i=1;i<N;i++) { int a,b,c;cin>>a>>b>>c; a--,b--; G[a].push_back(make_pair(b,c)); G[b].push_back(make_pair(a,c)); } dfs(0,-1,0); ans=(long)N*(N-1); dfs2(0,-1); cout<<ans<<endl; }