結果

問題 No.2892 Lime and Karin
ユーザー kotatsugamekotatsugame
提出日時 2024-09-13 22:00:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 261 ms / 8,000 ms
コード長 1,377 bytes
コンパイル時間 1,045 ms
コンパイル使用メモリ 77,712 KB
実行使用メモリ 18,632 KB
最終ジャッジ日時 2024-09-13 22:01:14
合計ジャッジ時間 8,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 3 ms
6,980 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 87 ms
8,768 KB
testcase_15 AC 83 ms
8,668 KB
testcase_16 AC 144 ms
9,716 KB
testcase_17 AC 33 ms
7,496 KB
testcase_18 AC 146 ms
9,840 KB
testcase_19 AC 205 ms
10,816 KB
testcase_20 AC 12 ms
6,944 KB
testcase_21 AC 104 ms
9,076 KB
testcase_22 AC 145 ms
9,856 KB
testcase_23 AC 54 ms
8,012 KB
testcase_24 AC 207 ms
10,900 KB
testcase_25 AC 210 ms
10,940 KB
testcase_26 AC 215 ms
11,028 KB
testcase_27 AC 203 ms
10,856 KB
testcase_28 AC 216 ms
11,000 KB
testcase_29 AC 214 ms
10,952 KB
testcase_30 AC 210 ms
11,100 KB
testcase_31 AC 218 ms
11,008 KB
testcase_32 AC 212 ms
11,076 KB
testcase_33 AC 204 ms
11,080 KB
testcase_34 AC 40 ms
10,856 KB
testcase_35 AC 40 ms
10,864 KB
testcase_36 AC 42 ms
10,860 KB
testcase_37 AC 42 ms
10,736 KB
testcase_38 AC 42 ms
10,736 KB
testcase_39 AC 261 ms
14,820 KB
testcase_40 AC 261 ms
18,148 KB
testcase_41 AC 246 ms
15,568 KB
testcase_42 AC 251 ms
18,632 KB
testcase_43 AC 244 ms
16,448 KB
testcase_44 AC 66 ms
8,392 KB
testcase_45 AC 172 ms
10,456 KB
testcase_46 AC 80 ms
8,660 KB
testcase_47 AC 113 ms
9,128 KB
testcase_48 AC 45 ms
8,136 KB
testcase_49 AC 135 ms
9,544 KB
testcase_50 AC 118 ms
11,104 KB
testcase_51 AC 118 ms
11,228 KB
testcase_52 AC 116 ms
11,208 KB
testcase_53 AC 121 ms
11,212 KB
testcase_54 AC 120 ms
11,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cassert>
using namespace std;
int N;
string S;
vector<int>G[1<<17];
int sz[1<<17];
bool vis[1<<17];
void dfs_sz(int u,int p)
{
	sz[u]=1;
	for(int v:G[u])if(!vis[v]&&v!=p)
	{
		dfs_sz(v,u);
		sz[u]+=sz[v];
	}
}
vector<int>V;
void dfs1(int u,int p,int cur)
{
	cur+=S[u]=='1'?1:-1;
	V.push_back(cur);
	for(int v:G[u])if(!vis[v]&&v!=p)dfs1(v,u,cur);
}
long ans;
long solve(vector<int>&V,int add)
{
	sort(V.begin(),V.end());
	long ret=0;
	int j=V.size();
	for(int i=0;i<V.size();i++)
	{
		while(j>0&&V[i]+V[j-1]+add>0)j--;
		ret+=V.size()-max(i,j);
	}
	return ret;
}
void dfs(int u)
{
	dfs_sz(u,-1);
	int root=u;
	{
		int p=-1;
		while(true)
		{
			bool fn=false;
			for(int v:G[root])if(!vis[v]&&v!=p&&sz[v]>sz[u]/2)
			{
				p=root;
				root=v;
				fn=true;
				break;
			}
			if(!fn)break;
		}
	}
	int add=S[root]=='1'?1:-1;
	vector<int>All;
	All.reserve(sz[u]);
	All.push_back(0);
	V.reserve(sz[u]/2);
	for(int v:G[root])if(!vis[v])
	{
		V.clear();
		dfs1(v,root,0);
		ans-=solve(V,add);
		for(int w:V)All.push_back(w);
	}
	ans+=solve(All,add);
	vis[root]=true;
	for(int v:G[root])if(!vis[v])dfs(v);
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	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);
	}
	cin>>S;
	dfs(0);
	cout<<ans<<endl;
}
0