Codeforces Round #414, rated, Div. 1 + Div. 2 B. Cutting Carrot+【等腰三角形等比例缩小】

来源:互联网 发布:古墓丽影8for mac 编辑:程序博客网 时间:2024/06/05 03:32

Codeforces Round #414, rated, Div. 1 + Div. 2 B. Cutting Carrot

B. Cutting Carrot
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Igor the analyst has adopted n little bunnies. As we all know, bunnies love carrots. Thus, Igor has bought a carrot to be shared between his bunnies. Igor wants to treat all the bunnies equally, and thus he wants to cut the carrot into npieces of equal area.

Formally, the carrot can be viewed as an isosceles triangle with base length equal to 1 and height equal to h. Igor wants to make n - 1 cuts parallel to the base to cut the carrot into n pieces. He wants to make sure that all n pieces have the same area. Can you help Igor determine where to cut the carrot so that each piece have equal area?

Illustration to the first example.
Input

The first and only line of input contains two space-separated integers, n and h (2 ≤ n ≤ 1000, 1 ≤ h ≤ 105).

Output

The output should contain n - 1 real numbers x1, x2, ..., xn - 1. The number xi denotes that the i-th cut must be made xi units away from the apex of the carrot. In addition, 0 < x1 < x2 < ... < xn - 1 < h must hold.

Your output will be considered correct if absolute or relative error of every number in your output doesn't exceed 10 - 6.

Formally, let your answer be a, and the jury's answer be b. Your answer is considered correct if .

Examples
input
3 2
output
1.154700538379 1.632993161855
input
2 100000
output
70710.678118654752

题解: 等腰三角形的高和底部 缩小是成比例的

           那么面积是1/n 比例为x  那么x*1*h*x/2=(1/n) h/2

           那么算出这个比例就可以了

#include <stdio.h>
#include <bits/stdc++.h>
#define mod 1000000007
#define read(); freopen("C:\\Users\\Administrator\\Desktop\\input.txt","r",stdin);
typedef long long ll;
using namespace std;
double h,n;
int main()
{
 cin>>n>>h;
 double area=h/2;
 for(int i=1;i<n;i++){
  double k=sqrt(area*(i/n)*2/h);
  printf("%0.13lf ",k*h);
 }
 return 0;
}

0 0
原创粉丝点击