제출 #562798

#제출 시각아이디문제언어결과실행 시간메모리
562798Bill_00수도 (JOI20_capital_city)C++14
0 / 100
196 ms77908 KiB
#include <bits/stdc++.h>
#define N 1000000
using namespace std;
int range[N], n, k, city[N], ans[N], bef[N], pos, x[N], sda;
bool vis[N];
vector<int> adj[N], adjgraph[N];
vector<pair<int, int> > v;
void dfs(int node, int par = 0){
	pos++;
//	cout << endl;
//	cout << pos << '\n';
	x[pos] = city[node];
	if(bef[city[node]] == 0){
		range[pos] = pos;
		bef[city[node]] = pos;
		ans[city[node]] = 1;
	}
	else{
		range[pos] = 1e9;
		int val = pos - 1;
		while(val > bef[city[node]]){
//			cout << val << ' ';
			if(range[val] > bef[city[node]]){
				ans[city[node]] += ans[x[val]];	
				adjgraph[x[val]].push_back(city[node]);
			} 
			else{
				ans[city[node]] += (ans[x[val]] - 1);	
			} 
			range[pos] = min(range[pos], range[val]);
			val = range[val] - 1;
		}
//		if(val < bef[city[node]]){
//			
//		}
//		cout << val << '\n';
		range[pos] = min(range[pos], range[bef[city[node]]]);
	}
//	cout << ans[city[node]] << '\n';
	for(int neigh : adj[node]){
		if(neigh != par) dfs(neigh, node);
	}
}

void dfs1(int node){
	vis[node] = 1;
	ans[node] = sda;
	for(int neigh : adjgraph[node]){
		if(vis[neigh] == 0) dfs1(neigh);
	}
}
int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	
	cin >> n >> k;
	for(int i = 1; i < n; i++){
		int a, b;
		cin >> a >> b;
		adj[a].push_back(b);
		adj[b].push_back(a);
	}
	int leaf;
	for(int i = 1; i <= n; i++){
		cin >> city[i];
		if(adj[i].size() == 1) leaf = i;
	}
	dfs(leaf);
	for(int i = 1; i <= k; i++){
		v.push_back({ans[i], i});
	}
	sort(v.begin(), v.end());
	for(int i = v.size() - 1; i >= 1; i--){
		sda = v[i].first;
		if(vis[v[i].second] == 0) dfs1(v[i].second);
	}
	int answer = 1e9;
	for(int i = 1; i <= k; i++){
//		cout << ans[i] << ' ';
		answer = min(answer, ans[i] - 1);
	}
//	cout << '\n';
	cout << answer;
}

컴파일 시 표준 에러 (stderr) 메시지

capital_city.cpp: In function 'int main()':
capital_city.cpp:69:5: warning: 'leaf' may be used uninitialized in this function [-Wmaybe-uninitialized]
   69 |  dfs(leaf);
      |  ~~~^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...