http://acm.hdu.edu.cn/showproblem.php?pid=4160

大娃娃可以套在小娃娃外面(各边严格小),问最后最少得到几个娃娃

题目中的娃娃可以看做点,嵌套关系可以看做有向的路径,这样发现这题就是一个裸的最小路径覆盖问题

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <map>
  5. #include <cmath>
  6.  
  7. using namespace std;
  8.  
  9. struct node{
  10. int s,t,nxt ;
  11. }e[] ;
  12. int k,m,n,head[],cnt,match[],vis[] ;
  13. int find(int s)
  14. {
  15. for(int i=head[s] ;i!=- ;i=e[i].nxt)
  16. {
  17. int tt=e[i].t ;
  18. if(!vis[tt])
  19. {
  20. vis[tt]= ;
  21. if(match[tt]==- || find(match[tt]))
  22. {
  23. match[tt]=s ;
  24. return ;
  25. }
  26. }
  27. }
  28. return ;
  29. }
  30. int max_match()
  31. {
  32. int ans= ;
  33. memset(match,-,sizeof(match)) ;
  34. for(int i= ;i<=n ;i++)
  35. {
  36. memset(vis,,sizeof(vis)) ;
  37. ans+=find(i);
  38. }
  39. return ans;
  40. }
  41. void add(int s,int t) {e[cnt].s=s ;e[cnt].t=t ;e[cnt].nxt=head[s] ;head[s]=cnt++ ;}
  42.  
  43. struct node1{
  44. int w,l,h;
  45. }kk[];
  46.  
  47. void read_graph()
  48. {
  49. memset(head,-,sizeof(head)) ;
  50. cnt= ;
  51. for(int i=;i<=n;i++){
  52. for(int j=;j<=n;j++){
  53. if(i==j)continue;
  54. if(kk[i].w<kk[j].w && kk[i].l<kk[j].l && kk[i].h<kk[j].h)
  55. add(i,j);
  56. }
  57. }
  58. }
  59.  
  60. int main(){
  61. while(~scanf("%d",&n),n){
  62. for(int i=;i<=n;i++){
  63. scanf("%d%d%d",&kk[i].w,&kk[i].l,&kk[i].h);
  64. }
  65. read_graph();
  66. printf("%d\n",n-max_match());
  67. }
  68. return ;
  69. }

HDU 4160的更多相关文章

  1. (匹配)Dolls --HDU --4160

    链接: http://acm.hdu.edu.cn/showproblem.php?pid=4160 代码: #include<stdio.h> #include<string.h& ...

  2. HDU 4160 Dolls (最小路径覆盖=顶点数-最大匹配数)

    Dolls Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submiss ...

  3. HDOJ 2111. Saving HDU 贪心 结构体排序

    Saving HDU Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total ...

  4. 【HDU 3037】Saving Beans Lucas定理模板

    http://acm.hdu.edu.cn/showproblem.php?pid=3037 Lucas定理模板. 现在才写,noip滚粗前兆QAQ #include<cstdio> #i ...

  5. hdu 4859 海岸线 Bestcoder Round 1

    http://acm.hdu.edu.cn/showproblem.php?pid=4859 题目大意: 在一个矩形周围都是海,这个矩形中有陆地,深海和浅海.浅海是可以填成陆地的. 求最多有多少条方格 ...

  6. HDU 4569 Special equations(取模)

    Special equations Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u S ...

  7. HDU 4006The kth great number(K大数 +小顶堆)

    The kth great number Time Limit:1000MS     Memory Limit:65768KB     64bit IO Format:%I64d & %I64 ...

  8. HDU 1796How many integers can you find(容斥原理)

    How many integers can you find Time Limit:5000MS     Memory Limit:32768KB     64bit IO Format:%I64d ...

  9. hdu 4481 Time travel(高斯求期望)(转)

    (转)http://blog.csdn.net/u013081425/article/details/39240021 http://acm.hdu.edu.cn/showproblem.php?pi ...

随机推荐

  1. 读书笔记1: 资源地址—通用资源的标识符(URI)

    例子: https://msdn.microsoft.com/zh-cn/library/system.uri(v=vs.110).aspx 解释:协议://主机[:端口号]/绝对路径[参数] 对应的 ...

  2. 最小生成树练习3(普里姆算法Prim)

    风萧萧兮易水寒,壮士要去敲代码.本女子开学后再敲了.. poj1258 Agri-Net(最小生成树)水题. #include<cstdio> #include<cstring> ...

  3. 5月4日课堂内容:for循环的穷举、迭代

    一.for循环拥有两类: 1.穷举: 把所有可能的情况都走一遍,使用if条件筛选出来满足条件的情况. 2.迭代: 从初始情况按照规律不断求解中间情况,最终推导出结果. 二.穷举练习 1.单位给发了一张 ...

  4. this和super关键字

    this关键字: 1.引用成员变量 2.通过this(参数列表)调用类的重载的构造方法 3.返回对象的值:使用return this,来返回某个类的引用. super关键字: 1.super是一个引用 ...

  5. H-The Cow Lineup(POJ 1989)

    The Cow Lineup Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 5367   Accepted: 3196 De ...

  6. JavaScript EventLoop

    转自:http://cek.io/blog/2015/12/03/event-loop/ What is JavaScript What is JavaScript anyway? Some word ...

  7. VBA读取文件夹下所有文件夹及文件内容,并以树形结构展示

    Const TR_LEVEL_MARK = "+"Const TR_COL_INDEX = "A"Const TR_COL_LEVEL = "E&qu ...

  8. SQL 调试:无法启动 T-SQL 调试。未能附加到 SQL Server 进程

    将 Windows 登录帐户添加为 sysadmin 已经具有 sysadmin 特权的用户必须执行以下命令: sp_addsrvrolemember 'Domain\Name', 'sysadmin ...

  9. HookIAT的启动程序

    // 启动程序.cpp : 定义控制台应用程序的入口点. // #include "stdafx.h" #include <Windows.h> #include &l ...

  10. 提升WordPress站点速度的八个建议

    WordPress是一个很棒的开源程序,几乎我认识的站长朋友当中,粗略估算有80%使用Wordpress.但很棒不等于完美,就在我所认识的这些朋友中,几乎所有人都会抱怨Wordpress太臃肿,运行效 ...