CF286D.Tourists
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A double tourist path, located at a park in Ultima Thule, is working by the following principle:
- We introduce the Cartesian coordinate system.
- At some points of time there are two tourists going (for a walk) from points (−1,0) and (1,0) simultaneously. The first one is walking from (−1,0) , the second one is walking from (1,0) .
- Both tourists in a pair move at the same speed 1 (distance unit per second), the first one moves along line x=−1 , the second one moves along line x=1 , both of them are moving in the positive direction of the Oy axis.
- At some points of time walls appear. Wall (li,ri) is a segment between points (0,li) and (0,ri) . Each wall appears immediately.
The Ultima Thule government wants to learn this for each pair of tourists that walk simultaneously: for how long (in seconds) will they not see each other? Two tourists don't see each other if the segment that connects their positions on the plane intersects at least one wall. Two segments intersect if they share at least one point. We assume that the segments' ends belong to the segments.
Help the government count the required time. Note that the walls can intersect (in any way) or coincide.
输入格式
The first line contains two space-separated integers n and m ( 1<=n,m<=105 ) — the number of pairs of tourists and the number of built walls. The next m lines contain three space-separated integers li , ri and ti each ( 0<=li<ri<=109 , 0<=ti<=109 ) — the wall ends and the time it appeared. The last line contains n distinct space-separated strictly increasing integers q1,q2,...,qn ( 0<=qi<=109 ) — the points of time when pairs of tourists walk.
All points of time are given in seconds.
输出格式
For each pair of tourists print on a single line a single integer — the time in seconds when the two tourists from the corresponding pair won't see each other. Print the numbers in the order in which the they go in the input.
输入输出样例
输入#1
2 2 1 4 3 3 6 5 0 1
输出#1
2 4
输入#2
3 3 0 3 4 0 1 2 2 4 0 1 3 4
输出#2
2 4 4