首页 > 代码库 > ural 1020. Rope(几何)
ural 1020. Rope(几何)
题目链接:ural 1020. Rope
题目大意:按照顺序给定N个点,每个点有半径R,问说用线环绕N个点所需要的长度。
解题思路:因为需要围成一个圈,所以旋转角度一定是一周,板径又都相同,所以直接就是两两点之间的距离加上一个周长。
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
const int maxn = 105;
const double pi = 4 * atan(1.0);
int N;
double R, x[maxn], y[maxn];
double dis (double x, double y) {
return sqrt(x * x + y * y);
}
int main () {
while (scanf("%d%lf", &N, &R) == 2) {
for (int i = 0; i < N; i++)
scanf("%lf%lf", &x[i], &y[i]);
x[N] = x[0], y[N] = y[0];
double ans = 2 * pi * R;
for (int i = 0; i < N; i++)
ans += dis(x[i]-x[i+1], y[i]-y[i+1]);
printf("%.2lf\n", ans);
}
return 0;
}
ural 1020. Rope(几何)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。