日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

Mr. Bender and Square

發(fā)布時(shí)間:2024/8/23 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Mr. Bender and Square 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

Description

Mr. Bender has a digital table of size?n?×?n, each cell can be switched on or off. He wants the field to have at least?c?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?n, and the columns — numbered from left to right from 1 to?n. Initially there is exactly one switched on cell with coordinates?(x,?y)?(x?is the row number,?y?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)?the side-adjacent cells are cells with coordinates?(x?-?1,?y),?(x?+?1,?y),?(x,?y?-?1),?(x,?y?+?1).

In how many seconds will Mr. Bender get happy?

Input

The first line contains four space-separated integers?n,?x,?y,?c(1?≤?n,?c?≤?109;?1?≤?x,?y?≤?n;?c?≤?n2).

Output

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

Sample Input

Input 6 4 3 1 Output 0 Input 9 3 8 10 Output 2

Hint

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.?.





//這題就是先算總面積,再減去超出面積,再加上重疊面積。關(guān)鍵要注意細(xì)節(jié)。
#include<iostream>
using namespace std;
int main()
{
? ? ?long long x,n,y,c;
? ? ?cin>>n>>y>>x>>c;
? ? ?long long i,xr,xl,yu,yd,d;
? ? ?x--;y--;
? ? ?long now=0;
? ? ?for(i=1;now<c;i++)
? ? ?{
? ? ? ? ?now=i*i+(i-1)*(i-1);
? ? ? ? ?if(now<c)
? ? ? ? ?continue;
? ? ? ? ?i--;
? ? ? ? ?xr=x+i;
? ? ? ? ?xl=x-i;
? ? ? ? ?yu=y-i;
? ? ? ? ?yd=y+i;
? ? ? ? ?if(xl<0) now-=xl*xl;
? ? ? ? ?if(xr>n-1) now-=(xr-n+1)*(xr-n+1);
? ? ? ? ? if(yu<0)
? ? ? ? ? {
? ? ? ? ? ? ? now-=yu*yu;
? ? ? ? ? ? ? yu++;
? ? ? ? ? ? ? d-=yu;
? ? ? ? ? ? ? if(x+d>n-1)
? ? ? ? ? ? ? ? now+=(x+d-n+2)*(x+d-n+1)/2;
? ? ? ? ? ? ? if(x+yu<0)
? ? ? ? ? ? ? ? now+=(x-d)*(x-d-1)/2;
? ? ? ? ? }
? ? ? ? ? if(yd>n-1)
? ? ? ? ? {
? ? ? ? ? ? ? ?now-=(yd-n+1)*(yd-n+1);
? ? ? ? ? ? ? ?d=yd-n+1;
? ? ? ? ? ? ? ?d--;
? ? ? ? ? ? ? ?if(x+d>n-1) now+=(x+d-n+2)*(x+d-n+1)/2;
? ? ? ? ? ? ? ?if(x-d<0) now+=(x-d)*(x-d-1)/2;
? ? ? ? ? }
? ? ? ? ? i++;
? ? ?}
? ? ?cout<<i-2<<endl;
}

總結(jié)

以上是生活随笔為你收集整理的Mr. Bender and Square的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。