Description

Arseniy is already grown-up and independent. His mother decided to leave him alone for m days and left on a vacation. She have prepared a lot of food, left some money and washed all Arseniy's clothes.

Ten minutes before her leave she realized that it would be also useful to prepare instruction of which particular clothes to wear on each of the days she will be absent. Arseniy's family is a bit weird so all the clothes is enumerated. For example, each of Arseniy's n socks is assigned a unique integer from 1 to n. Thus, the only thing his mother had to do was to write down two integers li and ri for each of the days — the indices of socks to wear on the day i (obviously, li stands for the left foot and ri for the right). Each sock is painted in one of k colors.

When mother already left Arseniy noticed that according to instruction he would wear the socks of different colors on some days. Of course, that is a terrible mistake cause by a rush. Arseniy is a smart boy, and, by some magical coincidence, he posses k jars with the paint — one for each of k colors.

Arseniy wants to repaint some of the socks in such a way, that for each of m days he can follow the mother's instructions and wear the socks of the same color. As he is going to be very busy these days he will have no time to change the colors of any socks so he has to finalize the colors now.

The new computer game Bota-3 was just realised and Arseniy can't wait to play it. What is the minimum number of socks that need their color to be changed in order to make it possible to follow mother's instructions and wear the socks of the same color during each of m days.

Input

The first line of input contains three integers n, m and k (2 ≤ n ≤ 200 000, 0 ≤ m ≤ 200 000, 1 ≤ k ≤ 200 000) — the number of socks, the number of days and the number of available colors respectively.

The second line contain n integers c1, c2, ..., cn (1 ≤ ci ≤ k) — current colors of Arseniy's socks.

Each of the following m lines contains two integers li and ri (1 ≤ li, ri ≤ n, li ≠ ri) — indices of socks which Arseniy should wear during the i-th day.

Output

Print one integer — the minimum number of socks that should have their colors changed in order to be able to obey the instructions and not make people laugh from watching the socks of different colors.

Sample Input

Input
3 2 3
1 2 3
1 2
2 3
Output
2
Input
3 2 2
1 1 2
1 2
2 1
Output
0

Sample Output

 

Hint

In the first sample, Arseniy can repaint the first and the third socks to the second color.

In the second sample, there is no need to change any colors.

比较简单的并查集。

思路就是,因为它说[L, R]是同一个颜色。那就合并起来。

然后对于并查集的每段区间里面的数。都有各自的颜色,贪心去变成颜色出现最多那个就行了。

就是用并查集把他们分组了。

没一组都要相同颜色。那么本来有2号颜色是最多的话。那么其它都要变成2号颜色。

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
#define inf (0x3f3f3f3f)
typedef long long int LL; #include <iostream>
#include <sstream>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <string>
const int maxn = + ;
int fa[maxn];
int colors[maxn];
vector<int>pos[maxn];
int find(int u) {
if (fa[u] == u) {
return fa[u];
} else return fa[u] = find(fa[u]);
}
void merge(int x, int y) {
x = find(x);
y = find(y);
if (x != y) {
fa[y] = x;
}
}
int book[maxn];
void work() {
for (int i = ; i <= maxn - ; ++i) fa[i] = i;
int n, m, k;
scanf("%d%d%d", &n, &m, &k);
for (int i = ; i <= n; ++i) {
scanf("%d", &colors[i]);
}
for (int i = ; i <= m; ++i) {
int L, R;
scanf("%d%d", &L, &R);
merge(L, R);
}
for (int i = ; i <= n; ++i) {
pos[find(i)].push_back(i);
}
int ans = ;
for (int i = ; i <= n; ++i) {
if (pos[i].size() == ) continue;
for (int j = ; j < pos[i].size(); ++j) {
book[colors[pos[i][j]]]++;
}
int mx = -inf;
for (int j = ; j < pos[i].size(); ++j) {
mx = max(book[colors[pos[i][j]]], mx);
book[colors[pos[i][j]]] = ;
}
// memset(book, 0, sizeof book);
ans += pos[i].size() - mx;
}
cout << ans << endl;
}
int main() {
#ifdef local
freopen("data.txt","r",stdin);
#endif
work();
return ;
}

最新文章

  1. Hibernate-一对多的关系维护
  2. php抓取页面的几种方式
  3. 李洪强漫谈iOS开发[C语言-042]-简单计算器
  4. Linux下IP的配置
  5. git - 搭建git仓库
  6. Java高精度学习第三弹——ACM中使用JAVA的详细介绍
  7. poj 2375 Cow Ski Area bfs
  8. shell注意事项
  9. 基于Spring Boot的图片上传
  10. SpringBoot Test集成测试
  11. UWP Windows历史上最漂亮的UWP框架出炉!!!
  12. Generation Axe 吉他之夜音乐会-广州站 感受
  13. jvm(一):总体概述
  14. Linux IPC实践(12) --System V信号量(2)
  15. django——模型层之多表操作
  16. PPT母版制作
  17. ElasticSearch(四):使用Java连接ElasticSearch集群
  18. Docker入门之一Docker在Window下安装
  19. hdu3486 ST表区间最值+二分
  20. MyBatis中的@Mapper注解及配套注解使用详解(上)

热门文章

  1. 书写优雅的shell脚本(八)- 日期格式化
  2. hdu-5818 Joint Stacks(模拟)
  3. codeforces 558A A. Lala Land and Apple Trees(水题)
  4. ACM学习历程—HDU 1276 士兵队列训练问题(队列)
  5. Asp.Net 无法获取IIS拾取目录的解决办法[译]
  6. SIP业务基本知识
  7. arm裸机程序启动流程
  8. Synchronized之二:synchronized的实现原理
  9. ASCII字符点阵字库的制作和使用
  10. url&amp;nbsp;传递参数(特殊字符)解决方法