CF1580C.Train Maintenance

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Kawasiro Nitori is excellent in engineering. Thus she has been appointed to help maintain trains.

There are nn models of trains, and Nitori's department will only have at most one train of each model at any moment. In the beginning, there are no trains, at each of the following mm days, one train will be added, or one train will be removed. When a train of model ii is added at day tt , it works for xix_i days (day tt inclusive), then it is in maintenance for yiy_i days, then in work for xix_i days again, and so on until it is removed.

In order to make management easier, Nitori wants you to help her calculate how many trains are in maintenance in each day.

On a day a train is removed, it is not counted as in maintenance.

输入格式

The first line contains two integers nn , mm ( 1n,m21051 \le n,m \le 2 \cdot 10^5 ).

The ii -th of the next nn lines contains two integers xi,yix_i,y_i ( 1xi,yi1091 \le x_i,y_i \le 10^9 ).

Each of the next mm lines contains two integers opop , kk ( 1kn1 \le k \le n , op=1op = 1 or op=2op = 2 ). If op=1op=1 , it means this day's a train of model kk is added, otherwise the train of model kk is removed. It is guaranteed that when a train of model xx is added, there is no train of the same model in the department, and when a train of model xx is removed, there is such a train in the department.

输出格式

Print mm lines, The ii -th of these lines contains one integers, denoting the number of trains in maintenance in the ii -th day.

输入输出样例

  • 输入#1

    3 4
    10 15
    12 10
    1 1
    1 3
    1 1
    2 1
    2 3

    输出#1

    0
    1
    0
    0
  • 输入#2

    5 4
    1 1
    10000000 100000000
    998244353 1
    2 1
    1 2
    1 5
    2 5
    1 5
    1 1

    输出#2

    0
    0
    0
    1

说明/提示

Consider the first example:

The first day: Nitori adds a train of model 33 . Only a train of model 33 is running and no train is in maintenance.

The second day: Nitori adds a train of model 11 . A train of model 11 is running and a train of model 33 is in maintenance.

The third day: Nitori removes a train of model 11 . The situation is the same as the first day.

The fourth day: Nitori removes a train of model 33 . There are no trains at all.

首页