A12373 | Train Car Selection
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vasya likes to travel by train, but doesn't like when the car he travels in is located in the tail of the train.
Vasya gets on the train at the station. The train consists of $n$ cars indexed from $1$ to $n$ counting from the locomotive (head of the train). Three types of events occur while the train is moving:
1. Some number of cars are added to the head of the train;
2. Some number of cars are added to the tail of the train;
3. Vasya recalculates the values of the convenience of the cars (read more about it below).
At each moment of time we will index the cars from the head of the train, starting from $1$ . Note that when adding new cars to the head of the train, the indexing of the old ones may shift.
To choose which car to go in, Vasya will use the value $A_i$ for each car (where $i$ is a car index), which is calculated as follows:
- At the beginning of the trip $A_i=0$ , as well as for the new cars at the time of their addition.
- During the next recalculation Vasya chooses some positive integers $b$ and $s$ and adds to all $A_i$ value $b + (i - 1) \cdot s$ .
Vasya hasn't decided yet where he will get on the train and where will get off the train, so after each event of one of the three types he wants to know the least index of the car, such that its value $A_i$ is minimal. Since there is a lot of cars, Vasya asked you to write a program that answers his question.
Vasya gets on the train at the station. The train consists of $n$ cars indexed from $1$ to $n$ counting from the locomotive (head of the train). Three types of events occur while the train is moving:
1. Some number of cars are added to the head of the train;
2. Some number of cars are added to the tail of the train;
3. Vasya recalculates the values of the convenience of the cars (read more about it below).
At each moment of time we will index the cars from the head of the train, starting from $1$ . Note that when adding new cars to the head of the train, the indexing of the old ones may shift.
To choose which car to go in, Vasya will use the value $A_i$ for each car (where $i$ is a car index), which is calculated as follows:
- At the beginning of the trip $A_i=0$ , as well as for the new cars at the time of their addition.
- During the next recalculation Vasya chooses some positive integers $b$ and $s$ and adds to all $A_i$ value $b + (i - 1) \cdot s$ .
Vasya hasn't decided yet where he will get on the train and where will get off the train, so after each event of one of the three types he wants to know the least index of the car, such that its value $A_i$ is minimal. Since there is a lot of cars, Vasya asked you to write a program that answers his question.
输入格式
The first line contains two integers $n$ and $m$ ( $1 \leq n \leq 10^9$ , $1 \leq m \leq 300\,000$ ), the number of cars in the train at the time of departure from the station and the number of stations, respectively.
Next $m$ lines contain the descriptions of events. Each event is one of the following three types:
- " $1$ $k$ " ( $1 \le k \le 10^9$ ), add $k$ cars to the head of the train
- " $2$ $k$ " ( $1 \le k \le 10^9$ ), add $k$ cars to the tail of the train
- " $3$ $b$ $s$ " ( $1 \le b, s \le 10^9$ ), recalculate the convenience of all train cars.
It is guaranteed that at any time the train length does not exceed $10^9$ . Also it's guaranteed that the integers $A_i$ will not grow too high. Formally, it's guaranteed that if we sum the largest addition over all events of the $3$ -rd type (that is, $b + (n - 1) \cdot s$ , where $n$ is the number of cars at that moment) then the acquired sum would be at most $10^{18}$ .
Next $m$ lines contain the descriptions of events. Each event is one of the following three types:
- " $1$ $k$ " ( $1 \le k \le 10^9$ ), add $k$ cars to the head of the train
- " $2$ $k$ " ( $1 \le k \le 10^9$ ), add $k$ cars to the tail of the train
- " $3$ $b$ $s$ " ( $1 \le b, s \le 10^9$ ), recalculate the convenience of all train cars.
It is guaranteed that at any time the train length does not exceed $10^9$ . Also it's guaranteed that the integers $A_i$ will not grow too high. Formally, it's guaranteed that if we sum the largest addition over all events of the $3$ -rd type (that is, $b + (n - 1) \cdot s$ , where $n$ is the number of cars at that moment) then the acquired sum would be at most $10^{18}$ .
输出格式
After each of the $m$ queries print two integers: $j$ and $A_j$ — the number of the car closest to the head of the train, such that its value $A_j$ is minimal, and the value $A_j$ itself.
输入输出样例
输入 #1
1 8 1 1 3 1 1 3 1 1 2 1 2 1 3 1 1 2 1 3 1 5
输出 #1
1 0 1 1 1 2 3 0 3 0 1 3 5 0 1 4
- Initially the train consists of one car with $A_1 = 0$ , let's denote train as $[0]$ for simplicity.
- After adding one car to the head, train is $[0, 0]$ .
- After recalculation of values with parameters $b=1, s=1$ , train is $[1, 2]$ .
- After another recalculation of values with the parameters $b=1, s=1$ , train is $[2, 4]$ .
- After adding one car to the end, train is $[2, 4, 0]$ .
- After another adding one car to the end, train is $[2, 4, 0, 0]$ .
- After recalculation of values with parameters $b=1$ , $s=1$ , train is $[3, 6, 3, 4]$ .
- After adding one car to the end, train is $[3, 6, 3, 4, 0]$ .
- After recalculation of values with parameters $b=1$ , $s=5$ , train is $[4, 12, 14, 20, 21]$ .
- After adding one car to the head, train is $[0, 0]$ .
- After recalculation of values with parameters $b=1, s=1$ , train is $[1, 2]$ .
- After another recalculation of values with the parameters $b=1, s=1$ , train is $[2, 4]$ .
- After adding one car to the end, train is $[2, 4, 0]$ .
- After another adding one car to the end, train is $[2, 4, 0, 0]$ .
- After recalculation of values with parameters $b=1$ , $s=1$ , train is $[3, 6, 3, 4]$ .
- After adding one car to the end, train is $[3, 6, 3, 4, 0]$ .
- After recalculation of values with parameters $b=1$ , $s=5$ , train is $[4, 12, 14, 20, 21]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted