博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ACM 第5题 Buildings
阅读量:4328 次
发布时间:2019-06-06

本文共 2625 字,大约阅读时间需要 8 分钟。

Have you ever heard the story of Blue.Mary, the great civil engineer? Unlike Mr. Wolowitz, Dr. Blue.Mary has accomplished many great projects, one of which is the Guanghua Building.
  The public opinion is that Guanghua Building is nothing more than one of hundreds of modern skyscrapers recently built in Shanghai, and sadly, they are all wrong. Blue.Mary the great civil engineer had try a completely new evolutionary building method in project of Guanghua Building. That is, to build all the floors at first, then stack them up forming a complete building.
  Believe it or not, he did it (in secret manner). Now you are face the same problem Blue.Mary once stuck in: Place floors in a good way.
  Each floor has its own weight w
i and strength s
i. When floors are stacked up, each floor has PDV(Potential Damage Value) equal to (Σw
j)-s
i, where (Σw
j) stands for sum of weight of all floors above.
  Blue.Mary, the great civil engineer, would like to minimize PDV of the whole building, denoted as the largest PDV of all floors.
  Now, it’s up to you to calculate this value.

Input  There’re several test cases.

  In each test case, in the first line is a single integer N (1 <= N <= 10 5) denoting the number of building’s floors. The following N lines specify the floors. Each of them contains two integers w i and s i (0 <= w i, s i <= 100000) separated by single spaces.
  Please process until EOF (End Of File).
Output  For each test case, your program should output a single integer in a single line - the minimal PDV of the whole building.
  If no floor would be damaged in a optimal configuration (that is, minimal PDV is non-positive) you should output 0.
Sample Input

310 62 35 422 22 2310 32 53 3

Sample Output

102
#include
unsigned long long yizu(int n){ unsigned long long w,s,max=0,sum=0; while(n--) { scanf("%llu%llu",&w,&s); if(w+s>max) max=w+s; sum+=w; } sum-=max; return sum; }int main(){ unsigned long long n,sum1; while(scanf("%llu",&n)!=EOF) { sum1=yizu(n); printf("%llu\n",sum1); } return 0;}

 

每层的 PDV等于这一层以上 重量之和(不包括本层)减去本层的s 。

所以可以知道 最下一层的PDV就是我们要求的 PDV 且我们要使这一层的PDV达到最小 就是我们的答案。

如样例的数据: 

310 62 35 42 则正确的摆放法式是 2 3 5 4 10 6 PDV = 2 + 5 - 6 = 1 w + s 越大越放在下面

对于相邻放置的两块板,设两块板为i,j他们上面的重量为sum。

1) PDV_a=sum-si;PDV_b=sum+wi-sj;

           交换两个板的位置      

  2)PDV_a'=sum+wj-si;PDV_b'=sum-sj;

          如果1优于2,求解得有效的条件为  wi-sj<wj-si 则移项得 wj+sj>si+si。

所以 PDV = sum-wj(去掉本层的重量)-sj

pdv[i]=sum(wi->wn)-wj-sj  所以提个负号 pdv=sum(wi -> wn)-(wj+sj)//使 wj+sj最大 PDV就会最小  

 

需要重点理解的地方,理解偏了就没法做了 1.PDV是最下层的不用理上层的PDV是多少。 2.PDV的计算不包括本层的重量。

转载于:https://www.cnblogs.com/ljzh/p/6340729.html

你可能感兴趣的文章
UIView的layoutSubviews,initWithFrame,initWithCoder方法
查看>>
STM32+IAP方案 实现网络升级应用固件
查看>>
用74HC165读8个按键状态
查看>>
jpg转bmp(使用libjpeg)
查看>>
linear-gradient常用实现效果
查看>>
sql语言的一大类 DML 数据的操纵语言
查看>>
VMware黑屏解决方法
查看>>
JS中各种跳转解析
查看>>
JAVA 基础 / 第八课:面向对象 / JAVA类的方法与实例方法
查看>>
Ecust OJ
查看>>
P3384 【模板】树链剖分
查看>>
Thrift源码分析(二)-- 协议和编解码
查看>>
考勤系统之计算工作小时数
查看>>
4.1 分解条件式
查看>>
Equivalent Strings
查看>>
flume handler
查看>>
收藏其他博客园主写的代码,学习加自用。先表示感谢!!!
查看>>
H5 表单标签
查看>>
su 与 su - 区别
查看>>
C语言编程-9_4 字符统计
查看>>