A11505 | Browser
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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?
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?
输入格式
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.
输出格式
Print one integer equal to the minimum number of seconds required to close all the tabs outside the segment $[l,r]$ .
输入输出样例
输入 #1
6 3 2 4
输出 #1
5
输入 #2
6 3 1 3
输出 #2
1
输入 #3
5 2 1 5
输出 #3
0
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted