poj 1113 wall

我不是女神ヾ 2023-08-17 15:22 248阅读 0赞

题目衔接:http://poj.org/problem?id=1113

Once upon a time there was a greedy King who ordered his chief Architect to build a wall around the King’s castle. The King was so greedy, that he would not listen to his Architect’s proposals to build a beautiful brick wall with a perfect shape and nice tall towers. Instead, he ordered to build the wall around the whole castle using the least amount of stone and labor, but demanded that the wall should not come closer to the castle than a certain distance. If the King finds that the Architect has used more resources to build the wall than it was absolutely necessary to satisfy those requirements, then the Architect will loose his head. Moreover, he demanded Architect to introduce at once a plan of the wall listing the exact amount of resources that are needed to build the wall.

aHR0cDovL3Bvai5vcmcvaW1hZ2VzLzExMTMvMTExM18xLmdpZg

Your task is to help poor Architect to save his head, by writing a program that will find the minimum possible length of the wall that he could build around the castle to satisfy King’s requirements.

The task is somewhat simplified by the fact, that the King’s castle has a polygonal shape and is situated on a flat ground. The Architect has already established a Cartesian coordinate system and has precisely measured the coordinates of all castle’s vertices in feet.

Input

The first line of the input file contains two integer numbers N and L separated by a space. N (3 <= N <= 1000) is the number of vertices in the King’s castle, and L (1 <= L <= 1000) is the minimal number of feet that King allows for the wall to come close to the castle.

Next N lines describe coordinates of castle’s vertices in a clockwise order. Each line contains two integer numbers Xi and Yi separated by a space (-10000 <= Xi, Yi <= 10000) that represent the coordinates of ith vertex. All vertices are different and the sides of the castle do not intersect anywhere except for vertices.

Output

Write to the output file the single number that represents the minimal possible length of the wall in feet that could be built around the castle to satisfy King’s requirements. You must present the integer number of feet to the King, because the floating numbers are not invented yet. However, you must round the result in such a way, that it is accurate to 8 inches (1 foot is equal to 12 inches), since the King will not tolerate larger error in the estimates.

Sample Input

  1. 9 100
  2. 200 400
  3. 300 400
  4. 300 300
  5. 400 300
  6. 400 400
  7. 500 400
  8. 500 200
  9. 350 200
  10. 200 200

Sample Output

  1. 1628

Hint

结果四舍五入就可以了

题目大意:给你一个城堡的n个点,现在要你建个墙使得这些墙距离这个城堡的距离都不超过一个距离

思路:凸包,凸包求多边形的周长,然后加上四个半圆周即为要求长度。为什么要加四个半圆周的长度?

以题目为例,我们在围成这个城堡后可以平行,然后加上四个圆周长即可如下图

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlZTM3MTA0Mg_size_16_color_FFFFFF_t_70

代码:

  1. /*
  2. 题目大意:现在给你n个点,让你使用这些点构成一个面积尽可能大的多边形,注意这些点不是会被全部使用
  3. 思路:凸包,直接求面积即可
  4. */
  5. #include<set>
  6. #include<map>
  7. #include<ctime>
  8. #include<stack>
  9. #include<queue>
  10. #include<cmath>
  11. #include<string>
  12. #include<vector>
  13. #include<cstdio>
  14. #include<cstring>
  15. #include<cstdlib>
  16. #include<iostream>
  17. #include<algorithm>
  18. using namespace std;
  19. typedef long long ll;
  20. #define inf 0x3f3f3f
  21. #define bug printf("bug\n")
  22. const int maxn=1e6+10;
  23. const double pi=acos(-1.0);
  24. const double esp=1e-6;
  25. const int N=2e2+10;
  26. struct point
  27. {
  28. int x,y;
  29. };
  30. struct line
  31. {
  32. point st,ed;
  33. double k,b;
  34. };
  35. int sign(double x)
  36. {
  37. if(fabs(x)<esp)
  38. return 0;
  39. return x>0?1:-1;
  40. }
  41. double getk(line l)
  42. {
  43. if(l.st.x==l.ed.x)///斜率不存在
  44. return inf;
  45. return (l.ed.y-l.st.y)/(l.ed.x-l.st.x);
  46. }
  47. double getb(line l)
  48. {
  49. return l.ed.y-l.k*l.ed.x;
  50. }
  51. double dis(point a,point b)
  52. {
  53. return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
  54. }
  55. int cmult(point a,point b,point c)///叉积
  56. {
  57. return (b.x-a.x)*(c.y-a.y)-(c.x-a.x)*(b.y-a.y);
  58. }
  59. point p[maxn];
  60. int cmp(point a,point b)
  61. {
  62. int ju=cmult(p[0],a,b);
  63. if(ju>0)
  64. return 1;
  65. else if(ju==0&&dis(a,p[0])<dis(b,p[0]))
  66. return 1;
  67. return 0;
  68. }
  69. int n;
  70. int Stack[maxn],top;
  71. void tb()
  72. {
  73. point p0;
  74. int k=0;
  75. p0=p[0];
  76. for(int i=1; i<n; i++)
  77. {
  78. if(p0.y>p[i].y||(p0.y==p[i].y&&p0.x==p[i].x))
  79. {
  80. p0=p[i];
  81. k=i;
  82. }
  83. }
  84. swap(p[k],p[0]);
  85. sort(p+1,p+n,cmp);
  86. if(n==1)
  87. {
  88. top=0;
  89. Stack[0]=0;
  90. return ;
  91. }
  92. if(n==2)
  93. {
  94. top=1;
  95. Stack[0]=0;
  96. Stack[1]=1;
  97. return;
  98. }
  99. if(n>2)
  100. {
  101. top=1;
  102. for(int i=0; i<=1; i++)
  103. Stack[i]=i;
  104. for(int i=2; i<n; i++)
  105. {
  106. while(top>0&&cmult(p[Stack[top-1]],p[Stack[top]],p[i])<=0)
  107. top--;
  108. top++;
  109. Stack[top]=i;
  110. }
  111. }
  112. }
  113. int main()
  114. {
  115. int l;
  116. while(scanf("%d%d",&n,&l)!=EOF)
  117. {
  118. top=0;
  119. for(int i=0;i<n;i++)
  120. scanf("%d%d",&p[i].x,&p[i].y);
  121. tb();
  122. double ans=0;
  123. for(int i=0;i<top;i++)
  124. {
  125. ans+=dis(p[Stack[i]],p[Stack[i+1]]);
  126. }
  127. ans+=dis(p[Stack[0]],p[Stack[top]]);
  128. ans+=2*pi*l;
  129. printf("%.0f\n",ans);
  130. }
  131. return 0;
  132. }

发表评论

表情:
评论列表 (有 0 条评论,248人围观)

还没有评论,来说两句吧...

相关阅读

    相关 Linux wall命令

    Linux wall命令会将讯息传给每一个 mesg 设定为 yes 的上线使用者。当使用终端机介面做为标准传入时, 讯息结束时需加上 EOF (通常用 Ctrl+D)。