A14664 | Train Maintenance
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Kawasiro Nitori is excellent in engineering. Thus she has been appointed to help maintain trains.
There are $n$ 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 $m$ days, one train will be added, or one train will be removed. When a train of model $i$ is added at day $t$ , it works for $x_i$ days (day $t$ inclusive), then it is in maintenance for $y_i$ days, then in work for $x_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.
There are $n$ 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 $m$ days, one train will be added, or one train will be removed. When a train of model $i$ is added at day $t$ , it works for $x_i$ days (day $t$ inclusive), then it is in maintenance for $y_i$ days, then in work for $x_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 $n$ , $m$ ( $1 \le n,m \le 2 \cdot 10^5$ ).
The $i$ -th of the next $n$ lines contains two integers $x_i,y_i$ ( $1 \le x_i,y_i \le 10^9$ ).
Each of the next $m$ lines contains two integers $op$ , $k$ ( $1 \le k \le n$ , $op = 1$ or $op = 2$ ). If $op=1$ , it means this day's a train of model $k$ is added, otherwise the train of model $k$ is removed. It is guaranteed that when a train of model $x$ is added, there is no train of the same model in the department, and when a train of model $x$ is removed, there is such a train in the department.
The $i$ -th of the next $n$ lines contains two integers $x_i,y_i$ ( $1 \le x_i,y_i \le 10^9$ ).
Each of the next $m$ lines contains two integers $op$ , $k$ ( $1 \le k \le n$ , $op = 1$ or $op = 2$ ). If $op=1$ , it means this day's a train of model $k$ is added, otherwise the train of model $k$ is removed. It is guaranteed that when a train of model $x$ is added, there is no train of the same model in the department, and when a train of model $x$ is removed, there is such a train in the department.
输出格式
Print $m$ lines, The $i$ -th of these lines contains one integers, denoting the number of trains in maintenance in the $i$ -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 $3$ . Only a train of model $3$ is running and no train is in maintenance.
The second day: Nitori adds a train of model $1$ . A train of model $1$ is running and a train of model $3$ is in maintenance.
The third day: Nitori removes a train of model $1$ . The situation is the same as the first day.
The fourth day: Nitori removes a train of model $3$ . There are no trains at all.
The first day: Nitori adds a train of model $3$ . Only a train of model $3$ is running and no train is in maintenance.
The second day: Nitori adds a train of model $1$ . A train of model $1$ is running and a train of model $3$ is in maintenance.
The third day: Nitori removes a train of model $1$ . The situation is the same as the first day.
The fourth day: Nitori removes a train of model $3$ . There are no trains at all.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted