现在的位置: 首页 > 综合 > 正文

A. Wasted Time

2012年09月14日 ⁄ 综合 ⁄ 共 1876字 ⁄ 字号 评论关闭
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wasted signing papers.

Mr. Scrooge's signature can be represented as a polyline A1A2... An.
Scrooge signs like that: first it places a pen at the pointA1,
then draws a segment from point A1 to
point A2,
then he draws a segment from point A2 to
point A3 and
so on to pointAn,
where he stops signing and takes the pen off the paper. At that the resulting line can intersect with itself and partially repeat itself but Scrooge pays no attention to it and never changes his signing style. As Scrooge makes the signature, he never takes
the pen off the paper and his writing speed is constant — 50 millimeters per second.

Scrooge signed exactly k papers throughout his life and all those signatures look the same.

Find the total time Scrooge wasted signing the papers.

Input

The first line contains two integers n and k (2 ≤ n ≤ 1001 ≤ k ≤ 1000).
Each of the following n lines contains the coordinates of the polyline's endpoints. The i-th
one contains coordinates of the point Ai —
integers xi and yi,
separated by a space.

All points Ai are
different. The absolute value of all coordinates does not exceed 20. The coordinates are measured in millimeters.

Output

Print one real number — the total time Scrooges wastes on signing the papers in seconds. The absolute or relative error should not exceed 10 - 6.

Sample test(s)
input
2 1
0 0
10 0
output
0.200000000
input
5 10
3 1
-5 6
-2 -1
3 2
10 0
output
6.032163204
input
6 10
5 0
4 0
6 0
3 0
7 0
2 0
output
3.000000000

解题说明:此题就是求N段线段距离

#include<cstdio>
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;

int main()
{
	int n,k;
	int i;
	double sum;
	double x[101],y[101];
	scanf("%d %d",&n,&k);
	sum=0;
	scanf("%lf %lf",&x[0],&y[0]);
	for(i=1;i<n;i++)
	{
		scanf("%lf %lf",&x[i],&y[i]);
		sum+=sqrt((x[i]-x[i-1])*(x[i]-x[i-1])+(y[i]-y[i-1])*(y[i]-y[i-1]));
	}
	sum=(sum/50)*k;
	printf("%lf\n",sum);
	
	return 0;
}

抱歉!评论已关闭.