• Knight Tournament (set)


    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 nm (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.

    题解:用set来模拟

    代码:

    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #include<set>
    
    using namespace std;
    int a[1000005];
    int main()
    {
    	set<int>s;
    	set<int>::iterator it;
    	int n,m;
    	cin>>n>>m;
    	s.clear();
    	for(int t=1;t<=n;t++)
    	{
    		s.insert(t);
    	}
    	int l,r,x;
    	for (int t=1;t<=m;t++)  
          {
                  x=s.size();
                  scanf("%d%d%d",&l,&r,&x);  
                  it=s.lower_bound(l);
                  int h;
                  while (it!=s.end() && *it<=r)
                  {
                       h=*it;
    				   it++;
                       if (h!=x) 
    				   {
    				   a[h]=x;
    				   s.erase(h);
    			       }
                  } 
          }
          printf("%d",a[1]);
          for(int t=2;t<=n;t++)
          {
          	printf(" %d",a[t]);
    	  }
    	
    	return 0;
    }
    
  • 相关阅读:
    shell tr命令的使用
    linux find prune排除某目录或文件
    在vue中使用axios发送post请求,参数方式
    webpack官网demo起步中遇到的问题
    css中盒子模型与box-sizing属性
    jquery获得 url的变量
    17-js观察者模式
    基于Jquery ui 可复用的酒店 web页面选择入住日期插件
    webkit浏览器下改变滚动条样式
    用户登录时,禁止chrome提示用户保存密码
  • 原文地址:https://www.cnblogs.com/Staceyacm/p/10781959.html
Copyright © 2020-2023  润新知