Ant Country consist of N towns.There are M roads connecting the towns.

Ant Tony,together with his friends,wants to go through every part of the country.

They intend to visit every road , and every road must be visited for exact one time.However,it may be a mission impossible for only one group of people.So they are trying to divide all the people into several groups,and each may start at different town.Now tony wants to know what is the least groups of ants that needs to form to achieve their goal. 

InputInput contains multiple cases.Test cases are separated by several blank lines. Each test case starts with two integer N(1<=N<=100000),M(0<=M<=200000),indicating that there are N towns and M roads in Ant Country.Followed by M lines,each line contains two integers a,b,(1<=a,b<=N) indicating that there is a road connecting town a and town b.No two roads will be the same,and there is no road connecting the same town.OutputFor each test case ,output the least groups that needs to form to achieve their goal.Sample Input

3 3
1 2
2 3
1 3 4 2
1 2
3 4

Sample Output

1
2

Hint

New ~~~ Notice: if there are no road connecting one town ,tony may forget about the town.
In sample 1,tony and his friends just form one group,they can start at either town 1,2,or 3.
In sample 2,tony and his friends must form two group.

简述:一个有回路与通路的混合图,问几笔能画完,忽略孤立点。

思路:不打印解,就使用并查集找到每条路的"root",无向图,统计每条路上奇度数的点,队伍数 = 回路数 + 通路数(奇数点/2)

代码如下:

const int maxm = ;

int degree[maxm], fa[maxm], vis[maxm], num[maxm], N, M;
vector<int> root; void init() {
memset(degree, , sizeof(degree)), memset(vis, , sizeof(vis)), memset(num, , sizeof(num));
root.clear();
for (int i = ; i <= N; ++i)
fa[i] = i;
} int Find(int x) {
if(x == fa[x])
return x;
return fa[x] = Find(fa[x]);
} void Union(int x,int y) {
int fx = Find(x), fy = Find(y);
if(fx != fy)
fa[fy] = fx;
} int main() {
while(scanf("%d%d",&N,&M) != EOF) {
init();
for (int i = ; i < M; ++i) {
int t1, t2;
scanf("%d%d", &t1, &t2);
degree[t1]++, degree[t2]++;
Union(t1, t2);
}
for(int i = ; i <= N; ++i) {
int f = Find(i);
if(!vis[f]) {
root.push_back(f);
vis[f] = ;
}
if(degree[i] % ) {
num[f]++;
}
}
int sum = ;
for (auto i = root.begin(); i != root.end(); ++i) {
if(degree[*i] == )
continue;
else if (num[*i] == )
sum++;
else if (num[*i])
sum += num[*i] / ;
}
printf("%d\n", sum);
}
return ;
}

为什么通路数是奇数点/2呢?(没学离散,后面填坑)直接画图就能证明必要性,回路也如此。

最新文章

  1. eclipse创建maven管理Spark的scala
  2. StreamReader和StreamWrite和FileStream区别和用法
  3. js同步访问后台资源
  4. github的入门使用
  5. How to setup ELM327 Bluetooth WiFi for Android software Torque
  6. IntelliJ IDEA 15 安装
  7. easyui源码翻译1.32--MenuButton(菜单按钮)
  8. stringstream vs sprintf, sscanf.
  9. jQuery幻灯片skitter-slider插件学习总结
  10. Ubuntu下使用虚拟机安装Windows XP(sunvirtualbox)
  11. nginx proxy优化
  12. jquery.mustache.js使用
  13. 测试环境-memcached安装与说明
  14. 使用telnet发送HTTP请求
  15. 【CJOJ P1957】【NOIP2010冲刺十模拟赛】数字积木
  16. web server性能优化浅谈
  17. C#应用编程小例子-01-渐显的窗体
  18. 周末班:Python基础之并发编程
  19. Human Motion Analysis with Wearable Inertial Sensors——阅读2
  20. 卸载列表信息——Uninstall注册表

热门文章

  1. spark-调节executor堆外内存
  2. 执行SQL时出现: ORDER BY clause is not in GROUP BY clause and contains nonaggregated c
  3. Python 基础之常用内置函数
  4. Spring Boot整合Mybatis(注解方式和XML方式)
  5. FFmpeg笔记-基本使用
  6. Hive的存储和MapReduce处理——数据清洗(Part2)
  7. Vue中img标签src属性绑定
  8. 吴裕雄 Bootstrap 前端框架开发——Bootstrap 表单:文本框(Textarea)
  9. C 语言入门---第六章 C语言数组
  10. Linux命令:date命令