博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Browser
阅读量:5078 次
发布时间:2019-06-12

本文共 2298 字,大约阅读时间需要 7 分钟。

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 1, 2 and 7 are closed, then a = 3, b = 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 inclusive opened?

Input

The only line of input contains four integer numbers n, pos, l, r (1 ≤ n ≤ 100, 1 ≤ pos ≤ n, 1 ≤ 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].

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

 

代码:

#include 
#include
#include
#include
#include
using namespace std;int main(){ int n,p,l,r; cin>>n>>p>>l>>r; if(l == 1 && r == n)cout<<0;///所有的都关闭了 不需要操作 else if(l == 1)cout<

 

转载于:https://www.cnblogs.com/8023spz/p/8358758.html

你可能感兴趣的文章
C# 委托与事件(入门1)
查看>>
黑马程序员-Java中的基本数据类型
查看>>
转载:解决IE下a标签会触发window.onbeforeunload的问题
查看>>
ADB server didn't ACK * failed to start daemon *
查看>>
Postgresql中的dataType
查看>>
顶点缓存与索引缓存
查看>>
PHP中获取文件扩展名的N种方法(转)
查看>>
setInterval循环设置并传入不同的参数
查看>>
bzoj 1013: [JSOI2008]球形空间产生器sphere【高斯消元】
查看>>
virtualenv 虚拟环境
查看>>
数的长度 NYOJ 69
查看>>
jQuery解决IE6、7、8不能使用 JSON.stringify 函数的问题
查看>>
TreeSet和Hashde、equals
查看>>
CIO的能力
查看>>
oracle存储过程
查看>>
poj2236 基础并查集
查看>>
Python异常处理
查看>>
精耕平台路径
查看>>
浅谈编译过程和符号表重定位问题
查看>>
String和Date 互相转换
查看>>