A10928 | Bank Robbery
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A robber has attempted to rob a bank but failed to complete his task. However, he had managed to open all the safes.
Oleg the bank client loves money (who doesn't), and decides to take advantage of this failed robbery and steal some money from the safes. There are many safes arranged in a line, where the $i$ -th safe from the left is called safe $i$ . There are $n$ banknotes left in all the safes in total. The $i$ -th banknote is in safe $x_{i}$ . Oleg is now at safe $a$ . There are two security guards, one of which guards the safe $b$ such that $b<a$ , i.e. the first guard is to the left of Oleg. The other guard guards the safe $c$ so that $c>a$ , i.e. he is to the right of Oleg.
The two guards are very lazy, so they do not move. In every second, Oleg can either take all the banknotes from the current safe or move to any of the neighboring safes. However, he cannot visit any safe that is guarded by security guards at any time, becaues he might be charged for stealing. Determine the maximum amount of banknotes Oleg can gather.
Oleg the bank client loves money (who doesn't), and decides to take advantage of this failed robbery and steal some money from the safes. There are many safes arranged in a line, where the $i$ -th safe from the left is called safe $i$ . There are $n$ banknotes left in all the safes in total. The $i$ -th banknote is in safe $x_{i}$ . Oleg is now at safe $a$ . There are two security guards, one of which guards the safe $b$ such that $b<a$ , i.e. the first guard is to the left of Oleg. The other guard guards the safe $c$ so that $c>a$ , i.e. he is to the right of Oleg.
The two guards are very lazy, so they do not move. In every second, Oleg can either take all the banknotes from the current safe or move to any of the neighboring safes. However, he cannot visit any safe that is guarded by security guards at any time, becaues he might be charged for stealing. Determine the maximum amount of banknotes Oleg can gather.
输入格式
The first line of input contains three space-separated integers, $a$ , $b$ and $c$ ( $1<=b<a<c<=10^{9}$ ), denoting the positions of Oleg, the first security guard and the second security guard, respectively.
The next line of input contains a single integer $n$ ( $1<=n<=10^{5}$ ), denoting the number of banknotes.
The next line of input contains $n$ space-separated integers $x_{1},x_{2},...,x_{n}$ ( $1<=x_{i}<=10^{9}$ ), denoting that the $i$ -th banknote is located in the $x_{i}$ -th safe. Note that $x_{i}$ are not guaranteed to be distinct.
The next line of input contains a single integer $n$ ( $1<=n<=10^{5}$ ), denoting the number of banknotes.
The next line of input contains $n$ space-separated integers $x_{1},x_{2},...,x_{n}$ ( $1<=x_{i}<=10^{9}$ ), denoting that the $i$ -th banknote is located in the $x_{i}$ -th safe. Note that $x_{i}$ are not guaranteed to be distinct.
输出格式
Output a single integer: the maximum number of banknotes Oleg can take.
输入输出样例
输入 #1
5 3 7 8 4 7 5 5 3 6 2 8
输出 #1
4
输入 #2
6 5 7 5 1 5 7 92 3
输出 #2
0
In the first example Oleg can take the banknotes in positions $4$ , $5$ , $6$ (note that there are $2$ banknotes at position $5$ ). Oleg can't take the banknotes in safes $7$ and $8$ because he can't run into the second security guard. Similarly, Oleg cannot take the banknotes at positions $3$ and $2$ because he can't run into the first security guard. Thus, he can take a maximum of $4$ banknotes.
For the second sample, Oleg can't take any banknotes without bumping into any of the security guards.
For the second sample, Oleg can't take any banknotes without bumping into any of the security guards.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted