CF731C Socks

洛谷评测传送门

题目描述

Arseniy is already grown-up and independent. His mother decided to leave him alone for mm 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 nn socks is assigned a unique integer from 11 to nn . Thus, the only thing his mother had to do was to write down two integers l_{i}l**i and r_{i}r**i for each of the days — the indices of socks to wear on the day ii (obviously, l_{i}l**i stands for the left foot and r_{i}r**i for the right). Each sock is painted in one of kk 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 kk jars with the paint — one for each of kk colors.

Arseniy wants to repaint some of the socks in such a way, that for each of mm 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 mm days.

输入格式

The first line of input contains three integers nn , mm and kk ( 2<=n<=2000002<=n<=200000 , 0<=m<=2000000<=m<=200000 , 1<=k<=2000001<=k<=200000 ) — the number of socks, the number of days and the number of available colors respectively.

The second line contain nn integers c_{1}c1 , c_{2}c2 , ..., c_{n}c**n ( 1<=c_{i}<=k1<=c**i<=k ) — current colors of Arseniy's socks.

Each of the following mm lines contains two integers l_{i}l**i and r_{i}r**i ( 1<=l_{i},r_{i}<=n1<=l**i,r**i<=n , l_{i}≠r_{i}l**ir**i ) — indices of socks which Arseniy should wear during the ii -th day.

输出格式

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.

题意翻译

有n只袜子,k种颜色,在m天中,问最少修改几只袜子的颜色,可以使每天穿的袜子左右两只都同颜色。

输入输出样例

输入 #1复制

输出 #1复制

输入 #2复制

输出 #2复制

说明/提示

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.

题解:

2019.11.5模拟赛95分场

题目翻译还挺好的,可以看一下。

我们发现,如果有一只袜子需要在\(m\)天中的多天出现,那么显然这只袜子要与所有和它配对的袜子颜色一样。

以此联想,我发现:这个关联关系是一张图,图上的节点就是袜子的编号,图的边表示这两只袜子要颜色一样。

那么我们发现,对于这张图的每一个连通块来讲,它的颜色必须是全部一样的。那么,对于这个连通块来讲,最优的决策(即修改最少)就是这个子图的全部节点数减去这个子图中出现颜色最多的颜色数。这一点不太明白的小伙伴可以看样例画图解决。

思路出来了:

依题意建图,在图上进行深搜,统计每张子图的节点数和出现次数最多的颜色出现了几次,累加答案即可。

于是T到了95感谢出题人@littleseven

一开始我使用了计数数组,每次深搜一张子图我清零一次(memset).

后来我学到了一种叫做\(map\)的容器,因为这个容器的时间复杂度是\(log\)级别的,而且它提供的映射操作能够统计题目信息,所以我们选用这个东西来优化实现复杂度/

代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<map>
using namespace std;
const int maxn=2*1e5+10;
int n,m,k,tmp,ans,t;
int tot,head[maxn],nxt[maxn<<1],to[maxn<<1];
bool v[maxn];
map<int,int> mp;
map<int,int>::iterator it;
char *p1,*p2,buf[100000];
#define nc() (p1==p2&&(p2=(p1=buf)+fread(buf,1,100000,stdin),p1==p2)?EOF:*p1++)
int read()
{
int x=0,f=1;
char ch=nc();
while(ch<48){if(ch=='-')f=-1;ch=nc();}
while(ch>47) x=(((x<<2)+x)<<1)+ch-48,ch=nc();
return x*f;
}
int col[maxn];
void add(int x,int y)
{
to[++tot]=y;
nxt[tot]=head[x];
head[x]=tot;
}
void dfs(int x)
{
v[x]=1;
mp[col[x]]++;
tmp++;
for(int i=head[x];i;i=nxt[i])
{
int y=to[i];
if(v[y])
continue;
dfs(y);
}
}
int main()
{
n=read(),m=read(),k=read();
for(int i=1;i<=n;i++)
col[i]=read();
for(int i=1;i<=m;i++)
{
int x,y;
x=read();y=read();
add(x,y);
add(y,x);
}
for(int i=1;i<=n;i++)
if(!v[i])
{
tmp=0,mp.clear(),t=0;
dfs(i);
for(it=mp.begin();it!=mp.end();it++)
t=max(t,it->second);
ans+=(tmp-t);
}
printf("%d",ans);
return 0;
}

CF731C Socks的更多相关文章

  1. CF731C. Socks[DFS 贪心]

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

  2. CF731C Socks并查集(森林),连边,贪心,森林遍历方式,动态开点释放内存

    http://codeforces.com/problemset/problem/731/C 这个题的题意是..小明的妈妈给小明留下了n只袜子,给你一个大小为n的颜色序列c 代表第i只袜子的颜色,小明 ...

  3. 并查集【CF731C】Socks

    Description 有\(n\)只袜子,\(k\)种颜色,在\(m\)天中,问最少修改几只袜子的颜色,可以使每天要穿的袜子颜色相同. Input 第一行\(n,m,k\)分别对应题目描述. 接下来 ...

  4. iphone使用mac上的SOCKS代理

    Step 1. Make sure the SOCKS tunnel on your work computer allows LAN connections so your iPhone/iPod ...

  5. redsocks 将socks代理转换成全局代理

    redsocks 需要手动下载编译.前置需求为libevent组件,当然gcc什么的肯定是必须的. 获取源码 git clone https://github.com/darkk/redsocks 安 ...

  6. 将 Tor socks 转换成 http 代理

    你可以通过不同的 Tor 工具来使用 Tor 服务,如 Tor 浏览器.Foxyproxy 和其它东西,像 wget 和 aria2 这样的下载管理器不能直接使用 Tor socks 开始匿名下载,因 ...

  7. Mac Aria2 使用Privoxy将socks代理转化为http代理

    安装Privoxy 打开终端安装privoxy来实现这里我是通过brew来进行的安装 brew install privoxy 看到这行已经安装成功 ==> Caveats To have la ...

  8. SOCKS 5协议详解(转)

    笔者在实际学习中,由于在有些软件用到了socks5(如oicq,icq等),对其原理不甚了解,相信很多朋友对其也不是很了解,于是仔细研读了一下rfc1928,觉得有必要译出来供大家参考. 1.介绍: ...

  9. Codeforces 731C. Socks 联通块

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

随机推荐

  1. qtdomdocument找不到

  2. LG5196 「USACO2019JAN」Cow Poetry 背包+乘法原理

    \(\mathrm{Cow Poetry}\) 问题描述 LG5196 题解 因为每句诗的长度一定是\(k\),所以自然而然想到背包. 设\(opt[i][j]\)代表到第\(i\)位时,结尾为\(j ...

  3. Aladdin and the Flying Carpet (LightOJ - 1341)【简单数论】【算术基本定理】【分解质因数】

    Aladdin and the Flying Carpet (LightOJ - 1341)[简单数论][算术基本定理][分解质因数](未完成) 标签:入门讲座题解 数论 题目描述 It's said ...

  4. Leetcode 153. 寻找旋转排序数组中的最小值

    假设按照升序排序的数组在预先未知的某个点上进行了旋转. ( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] ). 请找出其中最小的元素. 你可以假设数组中不存在重 ...

  5. 使用ArcPy拓扑检查的基本步骤

    拓扑检查是GIS的特性,在ArcGIS可使用多种方法进行检查,包括: 1.在数据集上右键按向导建立: 2.使用拓扑工具箱的一系列工具分步建立: 3.创建模型工具,制作专门的拓扑工具: 4.利用ArcP ...

  6. centos安装nodejs并配置生产环境,基于pm2

    安装nodejs和yarn的命令: curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum. ...

  7. DirectShow 简介

    一.DirectShow 简介 DirectShow(简称 DShow) 是一个 Windows 平台上的流媒体框架,提供了高质量的多媒体流采集和回放功能.它支持多种多样的媒体文件格式,包括 ASF. ...

  8. Java连载47-多态基础语法、作用

    一.多态的语法 1.两个类之间没有继承关系的,使用多态是不能编译的. 2.无论向上还是向上转型,都需要有继承关系. 3.什么时候需要向下转型? 当调用的方法或者属性是子类型特有的,在父类型中不存在,就 ...

  9. 史上最全的用Python操控手机APP攻略!建议收藏!

    ​最近经常看到用Python操作手机APP的项目,例如抖音.闲鱼之类的,看完后发现这些项目无一例外需要部署ADB环境.至于什么是ADB,很多大神都讲过,只是写得比较专业,我等菜鸟看完还是云里雾里. ​ ...

  10. C#实现数据回滚,A事件和B事件同时执行,其中任何一个事件执行失败,都会返回失败

    /// <summary> /// 执行数据库回滚操作,用于sql语句执行失败后,恢复执行前的数据 /// </summary> /// <param name=&quo ...