CF38D.Vasya the Architect

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Once Vasya played bricks. All the bricks in the set had regular cubical shape. Vasya vas a talented architect, however the tower he built kept falling apart.

Let us consider the building process. Vasya takes a brick and puts it on top of the already built tower so that the sides of the brick are parallel to the sides of the bricks he has already used. Let's introduce a Cartesian coordinate system on the horizontal plane, where Vasya puts the first brick. Then the projection of brick number ii on the plane is a square with sides parallel to the axes of coordinates with opposite corners in points (xi,1,yi,1)(x_{i,1},y_{i,1}) and (xi,2,yi,2)(x_{i,2},y_{i,2}) . The bricks are cast from homogeneous plastic and the weight of a brick a×a×aa×a×a is a3a^{3} grams.

It is guaranteed that Vasya puts any brick except the first one on the previous one, that is the area of intersection of the upper side of the previous brick and the lower side of the next brick is always positive.

We (Vasya included) live in a normal world where the laws of physical statics work. And that is why, perhaps, if we put yet another brick, the tower will collapse under its own weight. Vasya puts the cubes consecutively one on top of the other until at least one cube loses the balance and falls down. If it happens, Vasya gets upset and stops the construction. Print the number of bricks in the maximal stable tower, that is the maximal number mm satisfying the condition that all the towers consisting of bricks 1, 2, ..., kk for every integer kk from 1 to mm remain stable.

输入格式

The first input file contains an integer nn ( 1<=n<=1001<=n<=100 ) which is the number of bricks. Each of the next nn lines contains four numbers xi,1,yi,1,xi,2,yi,2x_{i,1},y_{i,1},x_{i,2},y_{i,2} ( xi,1xi,2,xi,1xi,2=yi,1yi,2x_{i,1}≠x_{i,2},|x_{i,1}-x_{i,2}|=|y_{i,1}-y_{i,2}| ) which are the coordinates of the opposite angles of the base of the brick number ii . The coordinates are integers and their absolute value does not exceed 5050 .

The cubes are given in the order Vasya puts them. It is guaranteed that the area of intersection of the upper side of the brick number i1i-1 and the lower side of the brick number ii is strictly strictly greater than zero for all i>=2i>=2 .

输出格式

Print the number of bricks in the maximal stable tower.

输入输出样例

  • 输入#1

    2
    0 0 3 3
    1 0 4 3
    

    输出#1

    2
    
  • 输入#2

    2
    0 0 3 3
    2 0 5 3
    

    输出#2

    1
    
  • 输入#3

    3
    0 0 3 3
    1 0 4 3
    2 0 5 3
    

    输出#3

    3
    
首页