結果

問題 No.2892 Lime and Karin
ユーザー 沙耶花沙耶花
提出日時 2024-09-13 22:46:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 8,000 ms
コード長 2,254 bytes
コンパイル時間 4,630 ms
コンパイル使用メモリ 266,836 KB
実行使用メモリ 21,920 KB
最終ジャッジ日時 2024-09-13 22:47:00
合計ジャッジ時間 15,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 140 ms
7,288 KB
testcase_15 AC 132 ms
7,040 KB
testcase_16 AC 234 ms
9,068 KB
testcase_17 AC 50 ms
5,376 KB
testcase_18 AC 238 ms
9,224 KB
testcase_19 AC 364 ms
11,100 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 164 ms
7,968 KB
testcase_22 AC 218 ms
9,104 KB
testcase_23 AC 82 ms
6,016 KB
testcase_24 AC 372 ms
11,332 KB
testcase_25 AC 348 ms
11,344 KB
testcase_26 AC 336 ms
11,440 KB
testcase_27 AC 345 ms
11,272 KB
testcase_28 AC 340 ms
11,464 KB
testcase_29 AC 342 ms
11,208 KB
testcase_30 AC 344 ms
11,476 KB
testcase_31 AC 355 ms
11,184 KB
testcase_32 AC 339 ms
11,184 KB
testcase_33 AC 335 ms
11,236 KB
testcase_34 AC 68 ms
16,140 KB
testcase_35 AC 68 ms
16,128 KB
testcase_36 AC 70 ms
16,128 KB
testcase_37 AC 71 ms
16,256 KB
testcase_38 AC 70 ms
16,128 KB
testcase_39 AC 381 ms
16,740 KB
testcase_40 AC 365 ms
21,524 KB
testcase_41 AC 359 ms
17,700 KB
testcase_42 AC 375 ms
21,920 KB
testcase_43 AC 368 ms
19,064 KB
testcase_44 AC 103 ms
6,528 KB
testcase_45 AC 276 ms
10,388 KB
testcase_46 AC 129 ms
7,160 KB
testcase_47 AC 179 ms
8,096 KB
testcase_48 AC 68 ms
5,632 KB
testcase_49 AC 209 ms
8,804 KB
testcase_50 AC 198 ms
14,084 KB
testcase_51 AC 197 ms
14,092 KB
testcase_52 AC 195 ms
13,960 KB
testcase_53 AC 210 ms
13,920 KB
testcase_54 AC 194 ms
13,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL
long long ans = 0;
int sz[200000];string S;
void dfs(vector<vector<int>> &E,int cv,int pv){
	sz[cv] = 1;
	rep(i,E[cv].size()){
		int to = E[cv][i];
		if(to==pv)continue;
		dfs(E,to,cv);
		sz[cv] += sz[to];
	}
}
int find_centroid(vector<vector<int>> &E,int cv,int pv,int N){
	int ret = -1;
	int ma = 0;
	rep(i,E[cv].size()){
		int to = E[cv][i];
		if(to==pv)continue;
		ret = max(ret,find_centroid(E,to,cv,N));
		ma = max(ma,sz[to]);
	}
	ma = max(ma,N-sz[cv]);
	if(ma <= N/2)return cv;
	return ret;
	
}
int get(char c){
	if(c=='0')return -1;
	return 1;
}
void get(vector<vector<int>> &E,int cv,int pv,vector<int> &ret,int sum){
	sum += get(S[cv]);
	ret.push_back(sum);
	rep(i,E[cv].size()){
		int to = E[cv][i];
		if(to==pv)continue;
		get(E,to,cv,ret,sum);
	}
}
long long Get(vector<int> a,int x){
	if(a.size()==0)return 0;
	sort(a.begin(),a.end());
	int cp = a.size()-1;
	long long ret = 0;
	rep(i,a.size()){
		while(cp!=-1 && a[i]+x+a[cp]>0)cp--;
		ret += a.size()-1 - cp;
		if(a[i]+x+a[i]>0)ret++;
	}
	
	return ret;
}

void solve(vector<vector<int>> &E,int cv){
	dfs(E,cv,-1);
	int c = find_centroid(E,cv,-1,sz[cv]);
	//cout<<cv<<' '<<c<<endl;
	assert(c!=-1);
	rep(i,E[c].size()){
		int to = E[c][i];
		rep(j,E[to].size()){
			if(E[to][j]==c){
				E[to].erase(E[to].begin()+j);
				break;
			}
		}
	}
	vector<vector<int>> lists(E[c].size()+1);
	rep(i,E[c].size()){
		get(E,E[c][i],-1,lists[i],0);
	}
	lists.back() = {0};
	
	long long ts = 0;
	rep(i,lists.size()){
		ts -= Get(lists[i],get(S[c]));
	}
	vector<int> t;
	rep(i,lists.size()){
		rep(j,lists[i].size()){
			t.push_back(lists[i][j]);
		}
	}
	ts += Get(t,get(S[c]));
	//cout<<"t"<<ts<<endl;
	ts /= 2;
	ans += ts;
	if(get(S[c])>0)ans++;
	//cout<<'a'<<ans<<endl;
	rep(i,E[c].size()){
		int to = E[c][i];
		solve(E,to);
	}
}

int main(){
	
	int n;
	cin>>n;
	vector<vector<int>> E(n);
	rep(i,n-1){
		int u,v;
		scanf("%d %d",&u,&v);
		u--;v--;
		E[u].push_back(v);
		E[v].push_back(u);
	}
	cin>>S;
	solve(E,0);
	cout<<ans<<endl;
	
	return 0;
	
}
0