zoukankan      html  css  js  c++  java
  • 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;
    }
    
  • 相关阅读:
    curl命令具体解释
    奇妙的go语言(聊天室的开发)
    python fabric实现远程操作和部署
    未来将是越界的时代
    Impala与Hive的比較
    不用加减乘除做加法
    跟我学系列教程——《13天让你学会Redis》火热报名中
    JavaScript(19)jQuery HTML 获取和设置内容和属性
    springMVC3学习(六)--SimpleFormController
    hdu 4908 BestCoder Sequence
  • 原文地址:https://www.cnblogs.com/Staceyacm/p/10781959.html
Copyright © 2011-2022 走看看