CF1209B.Koala and Lights

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

It is a holiday season, and Koala is decorating his house with cool lights! He owns nn 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 aia_i and bib_i . Light with parameters aia_i and bib_i will toggle (on to off, or off to on) every aia_i seconds starting from the bib_i -th second. In other words, it will toggle at the moments bib_i , bi+aib_i + a_i , bi+2aib_i + 2 \cdot a_i and so on.

You know for each light whether it's initially on or off and its corresponding parameters aia_i and bib_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 nn ( 1n1001 \le n \le 100 ), the number of lights.

The next line contains a string ss of nn characters. The ii -th character is "1", if the ii -th lamp is initially on. Otherwise, ii -th character is "0".

The ii -th of the following nn lines contains two integers aia_i and bib_i ( 1ai,bi51 \le a_i, b_i \le 5 ) — the parameters of the ii -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 22 (e.g. at the moment 22 ).

In the second example, all lights are initially on. So the answer is 44 .

首页