Submission #485749

# Submission time Handle Problem Language Result Execution time Memory
485749 2021-11-09T08:13:27 Z rk42745417 Balanced Tree (info1cup18_balancedtree) C++17
0 / 100
212 ms 36760 KB
#include <bits/stdc++.h>
using namespace std;

#define EmiliaMyWife ios::sync_with_stdio(0); cin.tie(0);
using ll = int64_t;
using ull = uint64_t;
using uint = uint32_t;
using ld = long double;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const ll LINF = ll(2e18) + ll(1e15);
const double EPS = 1e-8;
static auto LamyIsCute = []() {
	EmiliaMyWife
	return 48763;
}();

signed main() {
	int t;
	cin >> t;
	while(t--) {
		int n;
		cin >> n;
		vector<vector<int>> edge(n + 1);
		for(int i = 1; i < n; i++) {
			int u, v;
			cin >> u >> v;
			edge[u].push_back(v);
			edge[v].push_back(u);
		}
		vector<int> arr(n + 1);
		for(int i = 1; i <= n; i++) {
			cin >> arr[i];
			if(arr[i] == -1)
				return 0;
		}
		int ans = 0;
		vector<int> dis(n + 1, INF);
		function<void(int, int, int)> dfs = [&](int u, int p, int c) {
			for(int v : edge[u]) {
				if(v == p)
					continue;
				dfs(v, u, c);
				dis[u] = min(dis[u], dis[v] + 1);
				if(arr[v] == c)
					dis[u] = 1;
			}
		};
		function<void(int, int, int, int)> dfs2 = [&](int u, int p, int c, int d) {
			//cout << c << ' ' << d << ' ' << dis[u] << '\n';
			ans = max(ans, min(dis[u], d));
			if(arr[u] == c)
				d = 0;
			multiset<int> has;
			has.insert(d);
			for(int v : edge[u]) {
				if(v == p)
					continue;
				if(arr[v] == c)
					has.insert(1);
				else
					has.insert(dis[v] + 1);
			}
			for(int v : edge[u]) {
				if(v == p)
					continue;
				if(arr[v] == c)
					has.erase(has.lower_bound(1));
				else
					has.erase(has.lower_bound(dis[v] + 1));
				dfs2(v, u, c, *has.begin() + 1);
				if(arr[v] == c)
					has.insert(1);
				else
					has.insert(dis[v] + 1);
			}
		};
		dfs(1, 1, 1);
		dfs2(1, 1, 1, INF);
		fill(dis.begin(), dis.end(), INF);
		dfs(1, 1, 0);
		dfs2(1, 1, 0, INF);
		if(ans >= n)
			cout << "-1\n";
		else
			cout << ans << '\n';
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 67 ms 1076 KB Output isn't correct
2 Incorrect 86 ms 4908 KB Invalid color
3 Incorrect 63 ms 2132 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
2 Incorrect 31 ms 7464 KB Unexpected end of file - int32 expected
3 Incorrect 11 ms 3276 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 1868 KB Unexpected end of file - int32 expected
2 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
3 Incorrect 2 ms 460 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
5 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
6 Incorrect 2 ms 844 KB Unexpected end of file - int32 expected
7 Incorrect 1 ms 316 KB Unexpected end of file - int32 expected
8 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
9 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
3 Incorrect 67 ms 1076 KB Output isn't correct
4 Incorrect 86 ms 4908 KB Invalid color
5 Incorrect 63 ms 2132 KB Output isn't correct
6 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
7 Incorrect 31 ms 7464 KB Unexpected end of file - int32 expected
8 Incorrect 11 ms 3276 KB Unexpected end of file - int32 expected
9 Incorrect 6 ms 1868 KB Unexpected end of file - int32 expected
10 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
11 Incorrect 2 ms 460 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
13 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
14 Incorrect 2 ms 844 KB Unexpected end of file - int32 expected
15 Incorrect 1 ms 316 KB Unexpected end of file - int32 expected
16 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
17 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected
18 Incorrect 3 ms 1100 KB Unexpected end of file - int32 expected
19 Incorrect 35 ms 7588 KB Unexpected end of file - int32 expected
20 Incorrect 0 ms 332 KB Unexpected end of file - int32 expected
21 Incorrect 212 ms 36760 KB Unexpected end of file - int32 expected
22 Incorrect 1 ms 332 KB Unexpected end of file - int32 expected