[关闭]
@xunuo 2017-02-26T12:28:01.000000Z 字数 2190 阅读 920

HDU 5432 Pyramid Split


Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

暴力


Description

Xiao Ming is a citizen who's good at playing,he has lot's of gold cones which have square undersides,let's call them pyramids.

Anyone of them can be defined by the square's length and the height,called them width and height.

To easily understand,all the units are mile.Now Ming has n pyramids,there height and width are known,Xiao Ming wants to make them again to get two objects with the same volume.

Of course he won't simply melt his pyramids and distribute to two parts.He has a sword named "Tu Long" which can cut anything easily.

Now he put all pyramids on the ground (the usdersides close the ground)and cut a plane which is parallel with the water level by his sword ,call this plane cutting plane.

Our mission is to find a cutting plane that makes the sum of volume above the plane same as the below,and this plane is average cutting plane.Figure out the height of average cutting plane.

Input

First line: T, the number of testcases.(1≤T≤100)

Then T testcases follow.In each testcase print three lines :

The first line contains one integers n(1≤n≤10000), the number of operations.

The second line contains n integers A1,…,An(1≤i≤n,1≤Ai≤1000) represent the height of the ith pyramid.



The third line contains n integers B1,…,Bn(1≤i≤n,1≤Bi≤100) represent the width of the ith pyramid.

Output

For each testcase print a integer - **the height of average cutting plane**.

(the results take the integer part,like 15.8 you should output 15)

Sample Input

2
2
6 5
10 7
8
702 983 144 268 732 166 247 569
20 37 51 61 39 5 79 99

Sample Output

1
98

题意:

有n个正四棱锥,把他们放在同一个水平面上,用一条线把它切割,要求上部分的体积总和=下半部分的体积总和;输出这个线放的高度;

解题思路:

要求上部分体积之和=下部分体积之和即上部分体积之和=总体积的二分之一;设四棱锥高=h[i],底面边长=a[i];设线方的高度为k,根据相似比有((h[i]-k)^3/h[i]^3)*(h[i]*a[i]*a[i])的总和=(1/2)*(h[i]*a[i]*a[i])的总和;

完整代码:

  1. #include<stdio.h>
  2. #include<string.h>
  3. #include<math.h>
  4. #include<algorithm>
  5. using namespace std;
  6. double h[10010];
  7. double a[10010];
  8. int main()
  9. {
  10. int t;
  11. scanf("%d",&t);
  12. while(t--)
  13. {
  14. int n;
  15. scanf("%d",&n);
  16. double maxn=0.0,s=0.0;
  17. for(int i=0;i<n;i++)
  18. {
  19. scanf("%lf",&h[i]);
  20. maxn=max(maxn,h[i]);
  21. }
  22. for(int i=0;i<n;i++)
  23. {
  24. scanf("%lf",&a[i]);
  25. s+=h[i]*a[i]*a[i];
  26. }
  27. s/=2.0;
  28. double j;
  29. int ans=0;
  30. for(j=1;j<maxn;j++)
  31. {
  32. double sum=0.0;
  33. for(int i=0;i<n;i++)
  34. {
  35. if(h[i]<=j)
  36. continue;
  37. double x=(h[i]-j)*(h[i]-j)*(h[i]-j);
  38. double y=h[i]*h[i];
  39. double z=a[i]*a[i];
  40. sum+=z*x/y;
  41. }
  42. if(sum<s)
  43. {
  44. ans=(int)j-1;
  45. break;
  46. }
  47. else if(sum==s)
  48. {
  49. ans=(int)j;
  50. break;
  51. }
  52. //break;
  53. }
  54. printf("%d\n",ans);
  55. }
  56. return 0;
  57. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注