CF175E.Power Defence

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya plays the Power Defence.

He must pass the last level of the game. In order to do this he must kill the Main Villain, who moves in a straight line at speed 1 meter per second from the point (,0)(-∞,0) to the point (+,0)(+∞,0) of the game world. In the points (x,1)(x,1) and (x,1)(x,-1) , where xx is an integer number, Vasya can build towers of three types: fire-tower, electric-tower or freezing-tower. However, it is not allowed to build two towers at the same point. Towers of each type have a certain action radius and the value of damage per second (except freezing-tower). If at some point the Main Villain is in the range of action of kk freezing towers then his speed is decreased by k+1k+1 times.

The allowed number of towers of each type is known. It is necessary to determine the maximum possible damage we can inflict on the Main Villain.

All distances in the problem are given in meters. The size of the Main Villain and the towers are so small, that they can be considered as points on the plane. The Main Villain is in the action radius of a tower if the distance between him and tower is less than or equal to the action radius of the tower.

输入格式

The first line contains three integer numbers nf,nenf,ne and nsns — the maximum number of fire-towers, electric-towers and freezing-towers that can be built (0<=nf,ne,ns<=20,1<=nf+ne+ns<=20)(0<=nf,ne,ns<=20,1<=nf+ne+ns<=20) . The numbers are separated with single spaces.

The second line contains three integer numbers rf,rerf,re and rsrs (1<=rf,re,rs<=1000)(1<=rf,re,rs<=1000) — the action radii of fire-towers, electric-towers and freezing-towers. The numbers are separated with single spaces.

The third line contains two integer numbers dfdf and dede (1<=df,de<=1000)(1<=df,de<=1000) — the damage a fire-tower and an electronic-tower can inflict on the Main Villain per second (in the case when the Main Villain is in the action radius of the tower). The numbers are separated with single space.

输出格式

Print the only real number — the maximum possible damage to the Main Villain with absolute or relative error not more than 10610^{-6} .

输入输出样例

  • 输入#1

    1 0 0
    10 10 10
    100 100
    

    输出#1

    1989.97487421
  • 输入#2

    1 0 1
    10 10 10
    100 100
    

    输出#2

    3979.94974843

说明/提示

In the first sample we've got one fire-tower that always inflicts the same damage, independently of its position.

In the second sample we've got another freezing-tower of the same action radius. If we build the two towers opposite each other, then the Main Villain's speed will be two times lower, whenever he enters the fire-tower's action radius. That means that the enemy will be inflicted with twice more damage.

首页