codeforces 357C Knight Tournament(set)

Description

Hooray! Berl II, the king of Berland is making a knight tournament. The king has already sent the message to all knights in the kingdom and they in turn agreed to participate in this grand event.

As for you, you're just a simple peasant. There's no surprise that you slept in this morning and were late for the tournament (it was a weekend, after all). Now you are really curious about the results of the tournament. This time the tournament in Berland went as follows:

  • There are n knights participating in the tournament. Each knight was assigned his unique number — an integer from 1 to n.
  • The tournament consisted of m fights, in the i-th fight the knights that were still in the game with numbers at least li and at most ri have fought for the right to continue taking part in the tournament.
  • After the i-th fight among all participants of the fight only one knight won — the knight number xi, he continued participating in the tournament. Other knights left the tournament.
  • The winner of the last (the m-th) fight (the knight number xm) became the winner of the tournament.

You fished out all the information about the fights from your friends. Now for each knight you want to know the name of the knight he was conquered by. We think that the knight number b was conquered by the knight number a, if there was a fight with both of these knights present and the winner was the knight number a.

Write the code that calculates for each knight, the name of the knight that beat him.

Input

The first line contains two integers n, m (2 ≤ n ≤ 3·105; 1 ≤ m ≤ 3·105) — the number of knights and the number of fights. Each of the following m lines contains three integers li, ri, xi (1 ≤ li < ri ≤ nli ≤ xi ≤ ri) — the description of the i-th fight.

It is guaranteed that the input is correct and matches the problem statement. It is guaranteed that at least two knights took part in each battle.

Output

Print n integers. If the i-th knight lost, then the i-th number should equal the number of the knight that beat the knight number i. If the i-th knight is the winner, then the i-th number must equal 0.

Sample Input

Input
4 3
1 2 1
1 3 3
1 4 4
Output
3 1 4 0 
Input
8 4
3 5 4
3 7 6
2 8 8
1 8 1
Output
0 8 4 6 4 8 6 1 

Hint

Consider the first test case. Knights 1 and 2 fought the first fight and knight 1 won. Knights 1 and 3 fought the second fight and knight 3 won. The last fight was between knights 3 and 4, knight 4 won

题意:n 个人参加m常比赛,每场比赛给出 l,r,x,表示区间【l,r】内的人都被x打败,最后问你每个人都是被谁打败的,冠军输出0。

分析:把这n 个人全部扔到set里面,根据给出的[l,r],x,做就好。

 1 /*************************************************************************
 2     > File Name: 365A.cpp
 3     > Author: 
 4     > Mail: 
 5     > Created Time: 2016年07月29日 星期五 20时54分32秒
 6  ************************************************************************/
 7 
 8 #include<iostream>
 9 #include<bits/stdc++.h>
10 using namespace std;
11 const int maxn = 3e5+7;
12 set<int> st;
13 set<int> :: iterator it,ite,cnt[maxn];
14 int ans[maxn];
15 
16 int main()
17 {
18     int n,m;
19     cin >> n >> m;
20     memset(ans,0,sizeof(ans));
21     for(int i = 1; i<= n; i++)
22     {
23         st.insert(i);
24     }
25     int l,r,x;
26     while(m--)
27     {
28         cin >> l >> r >> x;
29         ite = st.lower_bound(l);
30         int num = 0;
31         for(it = ite; *it <= r && it != st.end();it++)
32         {
33             if(*it != x)
34             {
35                 ans[*it] = x;
36                 cnt[num++] = it;
37             }
38         }
39         for(int i = 0; i< num; i++)
40         {
41             st.erase(cnt[i]);
42         }
43     }
44     cout << ans[1];
45     for(int i = 2; i<= n;i++)
46     {
47         cout << ' ' << ans[i];
48     }
49     cout << endl;
50     return 0;
51 }
原文地址:https://www.cnblogs.com/PrayG/p/5732729.html