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;
    }
    
  • 相关阅读:
    机器学习十四--深度学习-卷积
    机器学习十三——垃圾邮件分类2
    机器学习十二----朴素贝叶斯-垃圾邮件分类
    机器学习十一 ——分类与监督学习,朴素贝叶斯分类算法
    机器学习九----主成分分析
    机器学习八——特征选择
    基于D3.js 绘制一个折柱混合图
    一个轮播图
    贪吃蛇
    数组中哪些方法是响应式的
  • 原文地址:https://www.cnblogs.com/Staceyacm/p/10781959.html
Copyright © 2011-2022 走看看