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;
    }
    
  • 相关阅读:
    vim/gvim使用笔记
    WebStorm for Mac (PyCharm)- 破解注册激活版下载
    volatile 关键字
    vue页面在加载的时候闪烁花括号{{}} 解决非工程化项目初始化页面闪动问题
    Element-ui el-table表格 排序图标刷新后不见问题
    与运算(&)、或运算(|)、异或运算(^)
    JS中 二进制与十进制的相互转换
    报告大家好消息,我找到新工作了
    公众号基本配置 token 验证失败,成功解决
    asp.net core 5.0,怎么山寨了koa2?
  • 原文地址:https://www.cnblogs.com/Staceyacm/p/10781958.html
Copyright © 2011-2022 走看看