A12794 | Koala and Lights
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
It is a holiday season, and Koala is decorating his house with cool lights! He owns $n$ lights, all of which flash periodically.
After taking a quick glance at them, Koala realizes that each of his lights can be described with two parameters $a_i$ and $b_i$ . Light with parameters $a_i$ and $b_i$ will toggle (on to off, or off to on) every $a_i$ seconds starting from the $b_i$ -th second. In other words, it will toggle at the moments $b_i$ , $b_i + a_i$ , $b_i + 2 \cdot a_i$ and so on.
You know for each light whether it's initially on or off and its corresponding parameters $a_i$ and $b_i$ . Koala is wondering what is the maximum number of lights that will ever be on at the same time. So you need to find that out.
Here is a graphic for the first example.
After taking a quick glance at them, Koala realizes that each of his lights can be described with two parameters $a_i$ and $b_i$ . Light with parameters $a_i$ and $b_i$ will toggle (on to off, or off to on) every $a_i$ seconds starting from the $b_i$ -th second. In other words, it will toggle at the moments $b_i$ , $b_i + a_i$ , $b_i + 2 \cdot a_i$ and so on.
You know for each light whether it's initially on or off and its corresponding parameters $a_i$ and $b_i$ . Koala is wondering what is the maximum number of lights that will ever be on at the same time. So you need to find that out.
Here is a graphic for the first example.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 100$ ), the number of lights.
The next line contains a string $s$ of $n$ characters. The $i$ -th character is "1", if the $i$ -th lamp is initially on. Otherwise, $i$ -th character is "0".
The $i$ -th of the following $n$ lines contains two integers $a_i$ and $b_i$ ( $1 \le a_i, b_i \le 5$ ) — the parameters of the $i$ -th light.
The next line contains a string $s$ of $n$ characters. The $i$ -th character is "1", if the $i$ -th lamp is initially on. Otherwise, $i$ -th character is "0".
The $i$ -th of the following $n$ lines contains two integers $a_i$ and $b_i$ ( $1 \le a_i, b_i \le 5$ ) — the parameters of the $i$ -th light.
输出格式
Print a single integer — the maximum number of lights that will ever be on at the same time.
输入输出样例
输入 #1
3 101 3 3 3 2 3 1
输出 #1
2
输入 #2
4 1111 3 4 5 2 3 1 3 2
输出 #2
4
输入 #3
6 011100 5 3 5 5 2 4 3 5 4 2 1 5
输出 #3
6
For first example, the lamps' states are shown in the picture above. The largest number of simultaneously on lamps is $2$ (e.g. at the moment $2$ ).
In the second example, all lights are initially on. So the answer is $4$ .
In the second example, all lights are initially on. So the answer is $4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted