Codeforces 127A-Wasted Time(题意)

A. Wasted Time
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 point A1, 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 point An, 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个点的坐标,然后在纸上用折线将这n个点连起来,一共有k张纸,连线速度为50/second ,求所用时间。
求出在一张纸上的连线的总长l,l*k/50 即所用时间。
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <string>
#include <vector>
#include <cmath>a
using namespace std;
#define LL long long
int x[110],y[110];
int main()
{
	int n,k;
	while(scanf("%d %d",&n,&k)!=EOF)
	{
		double sum=0;
		for(int i=0;i<n;i++)
		{
			scanf("%d %d",x+i,y+i);
			if(i)
				sum+=(sqrt(pow(x[i]-x[i-1],2)+pow(y[i]-y[i-1],2)));
		}
		printf("%.9lf\n",sum*k/50.0);
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值