CF255D.Mr. Bender and Square

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Mr. Bender has a digital table of size n×nn×n , each cell can be switched on or off. He wants the field to have at least cc switched on squares. When this condition is fulfilled, Mr Bender will be happy.

We'll consider the table rows numbered from top to bottom from 1 to nn , and the columns — numbered from left to right from 1 to nn . Initially there is exactly one switched on cell with coordinates (x,y)(x,y) ( xx is the row number, yy is the column number), and all other cells are switched off. Then each second we switch on the cells that are off but have the side-adjacent cells that are on.

For a cell with coordinates (x,y)(x,y) the side-adjacent cells are cells with coordinates (x1,y)(x-1,y) , (x+1,y)(x+1,y) , (x,y1)(x,y-1) , (x,y+1)(x,y+1) .

In how many seconds will Mr. Bender get happy?

输入格式

The first line contains four space-separated integers n,x,y,cn,x,y,c (1<=n,c<=109; 1<=x,y<=n; c<=n2)(1<=n,c<=10^{9}; 1<=x,y<=n; c<=n^{2}) .

输出格式

In a single line print a single integer — the answer to the problem.

输入输出样例

  • 输入#1

    6 4 3 1
    

    输出#1

    0
    
  • 输入#2

    9 3 8 10
    

    输出#2

    2
    

说明/提示

Initially the first test has one painted cell, so the answer is 0. In the second test all events will go as is shown on the figure. .

首页