CF1901F.Landscaping
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are appointed to a very important task: you are in charge of flattening one specific road.
The road can be represented as a polygonal line starting at (0,0) , ending at (n−1,0) and consisting of n vertices (including starting and ending points). The coordinates of the i -th vertex of the polyline are (i,ai) .
"Flattening" road is equivalent to choosing some line segment from (0,y0) to (n−1,y1) such that all points of the polyline are below the chosen segment (or on the same height). Values y0 and y1 may be real.
You can imagine that the road has some dips and pits, and you start pouring pavement onto it until you make the road flat. Points 0 and n−1 have infinitely high walls, so pavement doesn't fall out of segment [0,n−1] .
The cost of flattening the road is equal to the area between the chosen segment and the polyline. You want to minimize the cost, that's why the flattened road is not necessary horizontal.
But there is a problem: your data may be too old, so you sent a person to measure new heights. The person goes from 0 to n−1 and sends you new heights bi of each vertex i of the polyline.
Since measuring new heights may take a while, and you don't know when you'll be asked, calculate the minimum cost (and corresponding y0 and y1 ) to flatten the road after each new height bi you get.
输入格式
The first line contains a single integer n ( 3≤n≤2⋅105 ) — the number of vertices of the polyline.
The second line contains n integers a0,a1,…,an−1 ( 0≤ai≤109 ; a0=an−1=0 ) — the heights of the corresponding vertices.
The third line contains n integers b0,b1,…,bn−1 ( 0≤bi≤109 ; b0=bn−1=0 ) — the new heights of the corresponding vertices.
输出格式
Print n numbers: as the i -th number ( 0 -indexed) print y0+y1 of the "best segment" (i. e. the sum of coordinates of the segment that gives the minimum cost) if you already know actual heights b0,…,bi .
If there are several "best segments", print the minimum possible y0+y1 among them.
Your answer is considered correct if its absolute or relative error does not exceed 10−9 .
Formally, let your answer be x , and the jury's answer be y . Your answer is accepted if and only if max(1,∣y∣)∣x−y∣≤10−9 .
输入输出样例
输入#1
5 0 5 1 3 0 0 1 3 2 0
输出#1
8.000000000000 4.000000000000 6.000000000000 6.000000000000 6.000000000000
输入#2
6 0 4 1 3 3 0 0 1 4 0 1 0
输出#2
7.000000000000 5.000000000000 7.500000000000 7.500000000000 6.666666666667 6.666666666667
说明/提示
The first answer in the first example is shown on the picture above.
You can achieve the second answer with the following "best segment":
You can achieve the third answer using the following "best segment":
You can achieve the fourth answer with the "best segment" shown below: