zoukankan      html  css  js  c++  java
  • 牛客网2018第三场C题 平衡树 rope的简单运用

     1 链接:https://www.nowcoder.com/acm/contest/141/C
     2 来源:牛客网
     3 
     4 Eddy likes to play cards game since there are always lots of randomness in the game. For most of the cards game, the very first step in the game is shuffling the cards. And, mostly the randomness in the game is from this step. However, Eddy doubts that if the shuffling is not done well, the order of the cards is predictable! 
     5 
     6 To prove that, Eddy wants to shuffle cards and tries to predict the final order of the cards. Actually, Eddy knows only one way to shuffle cards that is taking some middle consecutive cards and put them on the top of rest. When shuffling cards, Eddy just keeps repeating this procedure. After several rounds, Eddy has lost the track of the order of cards and believes that the assumption he made is wrong. As Eddy's friend, you are watching him doing such foolish thing and easily memorizes all the moves he done. Now, you are going to tell Eddy the final order of cards as a magic to surprise him.
     7 
     8 Eddy has showed you at first that the cards are number from 1 to N from top to bottom.
     9 
    10 For example, there are 5 cards and Eddy has done 1 shuffling. He takes out 2-nd card from top to 4-th card from top(indexed from 1) and put them on the top of rest cards. Then, the final order of cards from top will be [2,3,4,1,5].
    11 输入描述:
    12 The first line contains two space-separated integer N, M indicating the number of cards and the number of shuffling Eddy has done.
    13 Each of following M lines contains two space-separated integer pi, si indicating that Eddy takes pi-th card from top to (pi+si-1)-th card from top(indexed from 1) and put them on the top of rest cards.
    14 
    15 
    16 1 ≤ N, M ≤ 105
    17 1 ≤ pi ≤ N
    18 1 ≤ si ≤ N-pi+1
    19 输出描述:
    20 Output one line contains N space-separated integers indicating the final order of the cards from top to bottom.
    21 示例1
    22 输入
    23 复制
    24 5 1
    25 2 3
    26 输出
    27 复制
    28 2 3 4 1 5
    29 示例2
    30 输入
    31 复制
    32 5 2
    33 2 3
    34 2 3
    35 输出
    36 复制
    37 3 4 1 2 5
    38 示例3
    39 输入
    40 复制
    41 5 3
    42 2 3
    43 1 4
    44 2 4
    45 输出
    46 复制
    47 3 4 1 5 2
    #include <iostream>
    #include <list>
    #include <ext/rope>
    
    using namespace std;
    using namespace __gnu_cxx;
    int n,m;
    rope<int>o;
    int main()
    {
        scanf("%d%d",&n,&m);
        for(int i = 1; i <= n; i++)
            o.push_back(i);
        int l,r;
        while(m--)
        {
            scanf("%d%d",&l,&r);
            o = o.substr(l-1,r)+o.substr(0,l-1)+o.substr(l+r-1,n-l-r+1);
        }
        for(int i = 0; i < n-1; i++)
            printf("%d ",o[i]);
        printf("%d
    ",o[n-1]);
        return 0;
    }
  • 相关阅读:
    Asp.Net Core 3.1 使用Autofac Aop
    Abp中的工作单元UnitOfWork的Aop是如何实现的
    Asp.Net Core 3.1 Api 集成Abp项目AutoMapper
    Asp.Net Core 3.1 Api 集成Abp项目动态WebApi
    php限制登录次数
    vbs小实例
    php导出数据到excel
    mysqli单例模式连接数据库
    微信JsApi支付
    HTML5新增表单控件
  • 原文地址:https://www.cnblogs.com/--lr/p/9374405.html
Copyright © 2011-2022 走看看