Physical Education Lessons
CodeForces - 915E
This year Alex has finished school, and now he is a first-year student of Berland State University. For him it was a total surprise that even though he studies programming, he still has to attend physical education lessons. The end of the term is very soon, but, unfortunately, Alex still hasn't attended a single lesson!
Since Alex doesn't want to get expelled, he wants to know the number of working days left until the end of the term, so he can attend physical education lessons during these days. But in BSU calculating the number of working days is a complicated matter:
There are n days left before the end of the term (numbered from 1 to n), and initially all of them are working days. Then the university staff sequentially publishes q orders, one after another. Each order is characterised by three numbers l, r and k:
- If k = 1, then all days from l to r (inclusive) become non-working days. If some of these days are made working days by some previous order, then these days still become non-working days;
- If k = 2, then all days from l to r (inclusive) become working days. If some of these days are made non-working days by some previous order, then these days still become working days.
Help Alex to determine the number of working days left after each order!
Input
The first line contains one integer n, and the second line — one integer q (1 ≤ n ≤ 109, 1 ≤ q ≤ 3·105) — the number of days left before the end of the term, and the number of orders, respectively.
Then q lines follow, i-th line containing three integers li, ri and *k**i* representing i-th order (1 ≤ li ≤ ri ≤ n, 1 ≤ *k**i* ≤ 2).
Output
Print q integers. i-th of them must be equal to the number of working days left until the end of the term after the first i orders are published.
Example
Input
461 2 13 4 12 3 21 3 22 4 11 4 2
Output
202314
思路:
区间很大,询问不是很大,经典的动态开点线段树问题,
即在处理询问的过程中,需要用到一个区间再到线段树中去申请一个位置给它。
大概需要开不到\(2*q*log(x)\) 左右个节点即可完成。x是区间的最大长度。
#include
#include
#include
#include
#include
#include
#include
#include