A11591 | Alena And The Heater
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
"We've tried solitary confinement, waterboarding and listening to Just In Beaver, to no avail. We need something extreme."
"Little Alena got an array as a birthday present $...$ "
The array $b$ of length $n$ is obtained from the array $a$ of length $n$ and two integers $l$ and $r$ ( $l<=r$ ) using the following procedure:
$b_{1}=b_{2}=b_{3}=b_{4}=0$ .
For all $5<=i<=n$ :
- $b_{i}=0$ if $a_{i},a_{i-1},a_{i-2},a_{i-3},a_{i-4}>r$ and $b_{i-1}=b_{i-2}=b_{i-3}=b_{i-4}=1$
- $b_{i}=1$ if $a_{i},a_{i-1},a_{i-2},a_{i-3},a_{i-4}<l$ and $b_{i-1}=b_{i-2}=b_{i-3}=b_{i-4}=0$
- $b_{i}=b_{i-1}$ otherwise
You are given arrays $a$ and $b'$ of the same length. Find two integers $l$ and $r$ ( $l<=r$ ), such that applying the algorithm described above will yield an array $b$ equal to $b'$ .
It's guaranteed that the answer exists.
"Little Alena got an array as a birthday present $...$ "
The array $b$ of length $n$ is obtained from the array $a$ of length $n$ and two integers $l$ and $r$ ( $l<=r$ ) using the following procedure:
$b_{1}=b_{2}=b_{3}=b_{4}=0$ .
For all $5<=i<=n$ :
- $b_{i}=0$ if $a_{i},a_{i-1},a_{i-2},a_{i-3},a_{i-4}>r$ and $b_{i-1}=b_{i-2}=b_{i-3}=b_{i-4}=1$
- $b_{i}=1$ if $a_{i},a_{i-1},a_{i-2},a_{i-3},a_{i-4}<l$ and $b_{i-1}=b_{i-2}=b_{i-3}=b_{i-4}=0$
- $b_{i}=b_{i-1}$ otherwise
You are given arrays $a$ and $b'$ of the same length. Find two integers $l$ and $r$ ( $l<=r$ ), such that applying the algorithm described above will yield an array $b$ equal to $b'$ .
It's guaranteed that the answer exists.
输入格式
The first line of input contains a single integer $n$ ( $5<=n<=10^{5}$ ) — the length of $a$ and $b'$ .
The second line of input contains $n$ space separated integers $a_{1},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of $a$ .
The third line of input contains a string of $n$ characters, consisting of 0 and 1 — the elements of $b'$ . Note that they are not separated by spaces.
The second line of input contains $n$ space separated integers $a_{1},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of $a$ .
The third line of input contains a string of $n$ characters, consisting of 0 and 1 — the elements of $b'$ . Note that they are not separated by spaces.
输出格式
Output two integers $l$ and $r$ ( $-10^{9}<=l<=r<=10^{9}$ ), conforming to the requirements described above.
If there are multiple solutions, output any of them.
It's guaranteed that the answer exists.
If there are multiple solutions, output any of them.
It's guaranteed that the answer exists.
输入输出样例
输入 #1
5 1 2 3 4 5 00001
输出 #1
6 15
输入 #2
10 -10 -9 -8 -7 -6 6 7 8 9 10 0000111110
输出 #2
-5 5
In the first test case any pair of $l$ and $r$ pair is valid, if $6<=l<=r<=10^{9}$ , in that case $b_{5}=1$ , because $a_{1},...,a_{5}<l$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted