CF731C. Socks[DFS 贪心]

C. Socks
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 kcolors.

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 nm 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 ≤ nli ≠ ri) — indices of socks which Arseniy should wear during thei-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.

Examples
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
Note

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.


太水了 dfs然后每个cc里找出现次数最多的颜色用size-它 

问题是怎么找:

1.数组标记,TLE

2.map标记,200ms

3.扔一个数组里然后排序扫描,数组初始化用memset就TLE,在扫描同时清空数组78ms

//map 200ms
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <map> using namespace std; const int N=2e5+5,M=2e5+5,INF=1e9+5; inline int read(){ char c=getchar();int x=0,f=1; while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return x*f; } int n,m,k,c[N],ans; struct edge{ int v,w,ne; }e[M<<1]; int h[N],cnt=0; inline void ins(int u,int v){ cnt++; e[cnt].v=v;e[cnt].ne=h[u];h[u]=cnt; cnt++; e[cnt].v=u;e[cnt].ne=h[v];h[v]=cnt; } int vis[N],size; map<int,int> mp; map<int,int>::iterator it; void dfs(int u){ mp[c[u]]++;vis[u]=1;size++; for(int i=h[u];i;i=e[i].ne){ int v=e[i].v; if(vis[v]) continue; dfs(v); } } int main(){ n=read();m=read();k=read(); for(int i=1;i<=n;i++) c[i]=read(); for(int i=1;i<=m;i++) ins(read(),read()); for(int i=1;i<=n;i++) if(!vis[i]){ size=0;mp.clear(); dfs(i); int t=0; for(it=mp.begin();it!=mp.end();it++) t=max(t,it->second); ans+=size-t; } printf("%d",ans); }
//扔数组 78ms
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> using namespace std; const int N=2e5+5,M=2e5+5,INF=1e9+5; inline int read(){ char c=getchar();int x=0,f=1; while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return x*f; } int n,m,k,c[N],ans; struct edge{ int v,w,ne; }e[M<<1]; int h[N],cnt=0; inline void ins(int u,int v){ cnt++; e[cnt].v=v;e[cnt].ne=h[u];h[u]=cnt; cnt++; e[cnt].v=u;e[cnt].ne=h[v];h[v]=cnt; } int vis[N],size; int a[N],p; void dfs(int u){ a[++p]=c[u];vis[u]=1;size++; for(int i=h[u];i;i=e[i].ne){ int v=e[i].v; if(vis[v]) continue; dfs(v); } } int main(){ n=read();m=read();k=read(); for(int i=1;i<=n;i++) c[i]=read(); for(int i=1;i<=m;i++) ins(read(),read()); for(int i=1;i<=n;i++) if(!vis[i]){ size=0; p=0; dfs(i); sort(a+1,a+1+p); int len=1,mx=0; for(int i=1;i<=p;i++){ if(a[i]==a[i+1]) len++; else mx=max(mx,len),len=1; a[i]=0; } ans+=size-mx; } printf("%d",ans); }
原文地址:https://www.cnblogs.com/candy99/p/6058773.html