Submission #127609

# Submission time Handle Problem Language Result Execution time Memory
127609 2019-07-09T16:21:02 Z wilwxk Mergers (JOI19_mergers) C++14
0 / 100
132 ms 44200 KB
#include <bits/stdc++.h>
using namespace std;

const int MAXN=5e5+5;
vector<int> g[MAXN];
map<int, int> mp[MAXN];
int cor[MAXN], contc[MAXN];
int n, x, raiz, respf;

int dfs(int cur, int p) {
	mp[cur][cor[cur]]++;
	int cont=0;
	for(auto viz : g[cur]) {
		if(viz==p) continue;
		cont+=dfs(viz, cur);
		if(mp[viz].size()>mp[cur].size()) swap(mp[cur], mp[viz]);
		for(auto mit : mp[viz]) {
			mp[cur][mit.first]+=mit.second;
			if(mp[cur][mit.first]==contc[mit.first]) mp[cur].erase(mit.first);
		}
	}
	if(mp[cur][cor[cur]]==contc[cor[cur]]) mp[cur].erase(cor[cur]);
	if(mp[cur].empty()) {
		cont++;
		if(cont==1) respf++;
	}
	return cont>0;
}

int main() {
	scanf("%d %d", &n, &x);
	for(int i=1; i<n; i++) {
		int a, b; scanf("%d %d", &a, &b);
		g[a].push_back(b);
		g[b].push_back(a);
	}
	for(int i=1; i<=n; i++) {
		scanf("%d", &cor[i]);
		contc[cor[i]]++;
	}
	raiz=1; for(int i=1; i<=n; i++) if(g[i].size()!=1) raiz=i;
	dfs(raiz, raiz);

	if(n!=1) printf("%d\n", (respf+1)/2);
	else printf("0\n");
}

Compilation message

mergers.cpp: In function 'int main()':
mergers.cpp:31:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &x);
  ~~~~~^~~~~~~~~~~~~~~~~
mergers.cpp:33:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   int a, b; scanf("%d %d", &a, &b);
             ~~~~~^~~~~~~~~~~~~~~~~
mergers.cpp:38:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &cor[i]);
   ~~~~~^~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 34 ms 35576 KB Output is correct
2 Incorrect 35 ms 35576 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 34 ms 35576 KB Output is correct
2 Incorrect 35 ms 35576 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 34 ms 35576 KB Output is correct
2 Incorrect 35 ms 35576 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 132 ms 44200 KB Output is correct
2 Correct 123 ms 39924 KB Output is correct
3 Incorrect 38 ms 35960 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 34 ms 35576 KB Output is correct
2 Incorrect 35 ms 35576 KB Output isn't correct
3 Halted 0 ms 0 KB -