10709: ABC130 —— C - Rectangle Cutting
[Creator : ]
Description
There is a rectangle in a coordinate plane. The coordinates of the four vertices are $(0,0)$, $(W,0)$, $(W,H)$, and $(0,H)$. You are given a point $(x,y)$ which is within the rectangle or on its border. We will draw a straight line passing through $(x,y)$ to cut the rectangle into two parts. Find the maximum possible area of the part whose area is not larger than that of the other. Additionally, determine if there are multiple ways to cut the rectangle and achieve that maximum.
Input
Input is given from Standard Input in the following format:
```
$W$ $H$ $x$ $y$
```
```
$W$ $H$ $x$ $y$
```
Output
Print the maximum possible area of the part whose area is not larger than that of the other, followed by `1` if there are multiple ways to cut the rectangle and achieve that maximum, and `0` otherwise.
The area printed will be judged correct when its absolute or relative error is at most $10^{-9}$.
The area printed will be judged correct when its absolute or relative error is at most $10^{-9}$.
Constraints
- $1 \leq W,H \leq 10^9$
- $0\leq x\leq W$
- $0\leq y\leq H$
- All values in input are integers.
- $0\leq x\leq W$
- $0\leq y\leq H$
- All values in input are integers.
Sample 1 Input
2 3 1 2
Sample 1 Output
3.000000 0
The line $x=1$ gives the optimal cut, and no other line does.
Sample 2 Input
2 2 1 1
Sample 2 Output
2.000000 1