B. Browser(模拟)

B. Browser
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Luba is surfing the Internet. She currently has n opened tabs in her browser, indexed from 1 to n from left to right. The mouse cursor is currently located at the pos-th tab. Luba needs to use the tabs with indices from l to r (inclusive) for her studies, and she wants to close all the tabs that don't belong to this segment as fast as possible.

Each second Luba can either try moving the cursor to the left or to the right (if the cursor is currently at the tab i, then she can move it to the tab max(i - 1, a) or to the tab min(i + 1, b)) or try closing all the tabs to the left or to the right of the cursor (if the cursor is currently at the tab i, she can close all the tabs with indices from segment [a, i - 1] or from segment [i + 1, b]). In the aforementioned expressions a and b denote the minimum and maximum index of an unclosed tab, respectively. For example, if there were 7 tabs initially and tabs 12 and 7are closed, then a = 3b = 6.

What is the minimum number of seconds Luba has to spend in order to leave only the tabs with initial indices from l to r inclusiveopened?

Input

The only line of input contains four integer numbers nposlr (1 ≤ n ≤ 1001 ≤ pos ≤ n1 ≤ l ≤ r ≤ n) — the number of the tabs, the cursor position and the segment which Luba needs to leave opened.

Output

Print one integer equal to the minimum number of seconds required to close all the tabs outside the segment [l, r].

Examples
input
6 3 2 4
output
5
input
6 3 1 3
output
1
input
5 2 1 5
output
0
Note

In the first test Luba can do the following operations: shift the mouse cursor to the tab 2, close all the tabs to the left of it, shift the mouse cursor to the tab 3, then to the tab 4, and then close all the tabs to the right of it.

In the second test she only needs to close all the tabs to the right of the current position of the cursor.

In the third test Luba doesn't need to do anything.



题意:

某个人打开了n个网页,现在鼠标光标在pos位置,要求以最少的时间关闭(l,r)以外的窗口,若在l上,则可以关闭l以左的所有窗口,在r可关闭r到右边的所有窗口。

思路:

模拟各种情况。

代码:

#include<iostream>
#include<cstring> 
#include<cstdio>
#include<algorithm>
#include<vector>
#include<cmath>
#define ll long long
#define inf 0x7f7f7f7f
using namespace std;  
int main()  {
	int p,l,r,n;
	int ans;
	while(cin>>n>>p>>l>>r){
		ans=0;
		if(l==1&&r==n) ans=0;
		else if(l==1&&p>=r) ans+=p-r+1;
		else if(l==1&&p<r) ans+=r-p+1;
		else if(r==n&&p<=l)ans+=l-p+1;
		else if(r==n&&p>l) ans+=p-l+1;
		else  ans+=min(abs(l-p)+r-l,abs(p-r)+r-l)+2;
		cout<<ans<<endl;
	}
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值