101302: [AtCoder]ABC130 C - Rectangle Cutting

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

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.

Constraints

  • $1 \leq W,H \leq 10^9$
  • $0\leq x\leq W$
  • $0\leq y\leq H$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$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}$.


Sample Input 1

2 3 1 2

Sample Output 1

3.000000 0

The line $x=1$ gives the optimal cut, and no other line does.


Sample Input 2

2 2 1 1

Sample Output 2

2.000000 1

Input

题意翻译

输入一个$W,H,x,y$ 在一个平面直角坐标系有一个长方形,四点坐标分别是$(0,0),(W,0),(W,H),(0,H)$ 请你过点$(x,y)$将这个长方形分为两个部分,让面积小的部分**尽量大**。 输出 **面积小的部分的最大值** 和 K(如果只有一种分法$K=0$,如果有多种方法$K=1$)

加入题单

上一题 下一题 算法标签: