1. **1354 Mobile Computing**

There is a mysterious planet called Yaen, whose space is 2-dimensional. There are many beautiful stones on the planet, and the Yaen people love to collect them. They bring the stones back home and make nice mobile arts of them to decorate their 2-dimensional living rooms. 
In their 2-dimensional world, a mobile is defined recursively as follows: 
• a stone hung by a string, or 
• a rod of length 1 with two sub-mobiles at both ends; the rod is hung by a string at the center of gravity of sub-mobiles. When the weights of the sub-mobiles are n and m, and their distances from the center of gravity are a and b respectively, the equation n × a = m × b holds. 
For example, if you got three stones with weights 1, 1, and 2, here are some possible mobiles and their widths: 
Given the weights of stones and the width of the room, your task is to design the widest possible mobile satisfying both of the following conditions. 
• It uses all the stones. 
• Its width is less than the width of the room. 
You should ignore the widths of stones. 
In some cases two sub-mobiles hung from both ends of a rod might overlap (see the figure on the right). Such mobiles are acceptable. The width of the example is (1/3) + 1 + (1/4). 
Input 
The first line of the input gives the number of datasets. Then the specified number of datasets follow. A dataset has the following format. 
r s w1 . 
ws 
r is a decimal fraction representing the width of the room, which satisfies 0 < r < 10. s is the number of the stones. You may assume 1 ≤ s ≤ 6. wi is the weight of the i-th stone, which is an integer. You may assume 1 ≤ wi ≤ 1000. 
Input 
The first line of the input gives the number of datasets. Then the specified number of datasets follow. A dataset has the following format. 
r s w1 . 
ws 
r is a decimal fraction representing the width of the room, which satisfies 0 < r < 10. s is the number of the stones. You may assume 1 ≤ s ≤ 6. wi is the weight of the i-th stone, which is an integer. You may assume 1 ≤ wi ≤ 1000. 
You can assume that no mobiles whose widths are between r − 0.00001 and r + 0.00001 can be made of given stones. 
Output 
For each dataset in the input, one line containing a decimal fraction should be output. The decimal fraction should give the width of the widest possible mobile as defined above. An output line should not contain extra characters such as spaces. 
In case there is no mobile which satisfies the requirement, answer ‘-1’ instead. 
The answer should not have an error greater than 0.00000001. You may output any numb er of digits after the decimal point, provided that the ab ove accuracy condition is satisfied. 
Sample Input 

1.3 




1.4 




2.0 




1.59 





1.7143 





Sample Output 
-1 
1.3333333333333335 
1.6666666666666667 
1.5833333333333335 
1.7142857142857142

解题思路: 
1.采用自底向上的方法枚举树——每次随机选取两棵子树合并成一棵树,每个结点依次编号。 
2.对于一棵确定的树,其长度必然可以确定。以根结点为坐标轴原点,dfs计算每个结点相对根结点的距离即可求出该树宽度。 
注意:输入只有一块石头时,输出0;

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4.  
  5. using namespace std;
  6. const int maxn=;
  7. int lchild[maxn];//左孩子编号
  8. int rchild[maxn];//右孩子编号
  9. int wight[maxn];//编号对应的质量
  10. int vis[maxn];//-1表示编号不存在 0表示编号不在树中 1表示在树中
  11. double dis[maxn];
  12.  
  13. double r,ans;
  14. int s;
  15. void init(){
  16. ans=;
  17. memset(lchild, -, sizeof lchild);
  18. memset(rchild, -, sizeof rchild);
  19. memset(wight,,sizeof wight);
  20. memset(vis, -, sizeof vis);
  21. }
  22.  
  23. void calculate(int id){//计算每个编号相对根结点的距离
  24. if(lchild[id]!=-){
  25. dis[lchild[id]]=dis[id]-double(wight[rchild[id]])/double(wight[lchild[id]]+wight[rchild[id]]);
  26. dis[rchild[id]]=dis[id]+double(wight[lchild[id]])/double(wight[lchild[id]]+wight[rchild[id]]);
  27. calculate(lchild[id]);
  28. calculate(rchild[id]);
  29. }
  30. }
  31.  
  32. void search(int cnt,int m){//m为此阶段石头最大编号
  33. if(cnt==){
  34. memset(dis, , sizeof dis);
  35. calculate();
  36. double a=,b=;
  37. for(int i=;i<maxn;i++){
  38. if(dis[i]<a) a=dis[i];
  39. if(dis[i]>b) b=dis[i];
  40. }
  41. double c=b-a;
  42. // cout<<" "<<c<<endl;
  43. if(c<r&&c>ans) ans=c;
  44. return ;
  45. }
  46. for(int i=;i<maxn;i++){
  47. if(vis[i]==){
  48. vis[i]=;
  49. for(int j=;j<maxn;j++){
  50. if(vis[j]==){
  51. vis[j]=;
  52. if(cnt==){
  53.  
  54. lchild[]=i;rchild[]=j;
  55. wight[]=wight[i]+wight[j];
  56. search(cnt-,m);
  57. }
  58. else{
  59.  
  60. vis[m+]=;
  61. lchild[m+]=i;rchild[m+]=j;
  62. wight[m+]=wight[i]+wight[j];
  63. search(cnt-,m+);
  64. vis[m+]=-;
  65. }
  66. vis[j]=;
  67. }
  68. }
  69. vis[i]=;
  70. }
  71. }
  72. }
  73. int main() {
  74. //freopen("input.txt", "rb", stdin);
  75. //freopen("output.txt","wb",stdout);
  76. int N;
  77. scanf("%d",&N);
  78. while(N--){
  79. init();
  80. scanf("%lf%d",&r,&s);
  81.  
  82. for(int i=;i<=s;i++){
  83. scanf("%d",&wight[i]);
  84. vis[i]=;
  85. }
  86. if(s==) {printf("%.16f\n",ans);continue;}
  87. search(s,s);
  88. if(ans==) cout<<"-1"<<endl;
  89. else printf("%.16f\n",ans);
  90. }
  91. return ;
  92. }

UVa 1354 Mobile Computing[暴力枚举]的更多相关文章

  1. UVa 1354 Mobile Computing | GOJ 1320 不加修饰的天平问题 (例题 7-7)

    传送门1(UVa): https://uva.onlinejudge.org/external/13/1354.pdf 传送门2(GOJ): http://acm.gdufe.edu.cn/Probl ...

  2. uva 1354 Mobile Computing ——yhx

    aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAABGcAAANuCAYAAAC7f2QuAAAgAElEQVR4nOy9XUhjWbo3vu72RRgkF5

  3. Uva 1354 Mobile Computing

    题目链接 题意: 在一个宽为r 的房间里, 有s个砝码, 每个天平的一端要么挂砝码, 要么挂另一个天平, 并且每个天平要保持平衡. 求使得所有砝码都放在天平上, 且总宽度不超过房间宽度的最大值. 思路 ...

  4. UVA - 11464 Even Parity 【暴力枚举】

    题意 给出一个 01 二维方阵 可以将里面的 0 改成1 但是 不能够 将 1 改成 0 然后这个方阵 会对应另外一个 方阵 另外一个方阵当中的元素 为 上 下 左 右 四个元素(如果存在)的和 要求 ...

  5. UVa 10603 Fill [暴力枚举、路径搜索]

    10603 Fill There are three jugs with a volume of a, b and c liters. (a, b, and c are positive intege ...

  6. UVA 10976 Fractions Again?!【暴力枚举/注意推导下/分子分母分开保存】

    [题意]:给你一个数k,求所有使得1/k = 1/x + 1/y成立的x≥y的整数对. [分析]:枚举所有在区间[k+1, 2k]上的 y 即可,当 1/k - 1/y 的结果分子为1即为一组解. [ ...

  7. UVA.12716 GCD XOR (暴力枚举 数论GCD)

    UVA.12716 GCD XOR (暴力枚举 数论GCD) 题意分析 题意比较简单,求[1,n]范围内的整数队a,b(a<=b)的个数,使得 gcd(a,b) = a XOR b. 前置技能 ...

  8. UVA 10012 How Big Is It?(暴力枚举)

      How Big Is It?  Ian's going to California, and he has to pack his things, including his collection ...

  9. uva 11088 暴力枚举子集/状压dp

    https://vjudge.net/problem/UVA-11088 对于每一种子集的情况暴力枚举最后一个三人小组取最大的一种情况即可,我提前把三个人的子集情况给筛出来了. 即 f[S]=MAX{ ...

随机推荐

  1. SQL注入绕过的技巧总结

    sql注入在很早很早以前是很常见的一个漏洞.后来随着安全水平的提高,sql注入已经很少能够看到了.但是就在今天,还有很多网站带着sql注入漏洞在运行.稍微有点安全意识的朋友就应该懂得要做一下sql注入 ...

  2. 【JZOJ4792】【NOIP2016提高A组模拟9.21】整除

    题目描述 麦克雷有一个1~n的排列,他想知道对于一些区间,有多少对区间内的数(x,y),满足x能被y整除. 输入 第一行包含2个正整数n,m.表示有n个数,m个询问. 接下来一行包含n个正整数,表示麦 ...

  3. Spring → 02:开发初步

    一.搭建开发环境 1.1.IDE的安装和配置 1.2.开发包的准备及开发包介绍 二.Hello World 2.1.Bean的编码 2.2.Spring配置文件编写 2.3.测试与运行 三.Sprin ...

  4. 【itsdangerous】的加密解密原理(易懂版)

    from itsdangerous import TimedJSONWebSignatureSerializer import time from itsdangerous import Signat ...

  5. 2018-11-30-WPF-解决-ListView-的滚动条不显示

    title author date CreateTime categories WPF 解决 ListView 的滚动条不显示 lindexi 2018-11-30 19:24:57 +0800 20 ...

  6. oracle审计的格式

    audit table; audit table by xxx(username); audit table by xxx(username) whenever not successful; 系统表 ...

  7. Leetcode746.Min Cost Climbing Stairs使用最小花费爬楼梯

    数组的每个索引做为一个阶梯,第 i个阶梯对应着一个非负数的体力花费值 cost[i](索引从0开始). 每当你爬上一个阶梯你都要花费对应的体力花费值,然后你可以选择继续爬一个阶梯或者爬两个阶梯. 您需 ...

  8. django2.0基础

    一.安装与项目的创建 1.安装 pip install django 2.查看版本 python -m django --version 3.创建项目 django-admin startprojec ...

  9. [React Native] 解析JSON文件

    在编写代码时,开发者有时需要存储一些比较多,在应用程序运行时不需要更改的数据.文件大不便于写在代码中,可以把这些数据存储到JSON文件中. 优点非常明显: 1. 数据存放在单独的文件中,代码精简有条理 ...

  10. java 操作Oracle 批量入库的问题

    java 操作Oracle 批量入库的问题 先说下我运行的环境: Windows7 64位操作系统 (四核)Intel i5-2300 CPU @2.80GHz 内存4G 硬盘1T Jdk1.6+My ...