zoukankan      html  css  js  c++  java
  • HDU 5702 Solving Order

    http://acm.hdu.edu.cn/showproblem.php?pid=5702

    Problem Description
    Welcome to HDU to take part in the first CCPC girls' competition!



    As a pretty special competition, many volunteers are preparing for it with high enthusiasm.
    One thing they need to do is blowing the balloons.
    Before sitting down and starting the competition, you have just passed by the room where the boys are blowing the balloons. And you have found that the number of balloons of different colors are strictly different.
    After thinking about the volunteer boys' sincere facial expressions, you noticed that, the problem with more balloon numbers are sure to be easier to solve.
    Now, you have recalled how many balloons are there of each color.
    Please output the solving order you need to choose in order to finish the problems from easy to hard.
    You should print the colors to represent the problems.
     
    Input
    The first line is an integer T which indicates the case number.
    And as for each case, the first line is an integer n, which is the number of problems.
    Then there are n lines followed, with a string and an integer in each line, in the i-th line, the string means the color of ballon for the i-th problem, and the integer means the ballon numbers.

    It is guaranteed that:
    T is about 100.
    1n10.
    1 string length 10.
    1 bolloon numbers 83.(there are 83 teams :p)
    For any two problems, their corresponding colors are different.
    For any two kinds of balloons, their numbers are different.
     
    Output
    For each case, you need to output a single line.
    There should be n strings in the line representing the solving order you choose.
    Please make sure that there is only a blank between every two strings, and there is no extra blank.
     
    Sample Input
    3
    3
    red 1 green 2 yellow 3
    1
    blue 83
    2
    red 2 white 1
     
    Sample Output
    yellow green red
    blue red white
     
    代码:
    #include <bits/stdc++.h>
    
    using namespace std;
    
    const int maxn = 1e5+10;
    int n;
    
    struct Balloons
    {
        char color[11];
        int num;
    } s[maxn];
    
    void display()
    {
        for(int i=1; i<=n; i++)
        {
            if(i!=n)
                printf("%s ",s[i].color);
            else
                printf("%s
    ",s[i].color);
        }
    }
    
    bool cmpNum(const Balloons& a,const Balloons& b)
    {
        return a.num>b.num;
    }
    
    int main()
    {
        int T;
        scanf("%d",&T);
        for(int i=1; i<=T; i++)
        {
            scanf("%d",&n);
            for(int j=1; j<=n; j++)
            {
                scanf("%s%d",&s[j].color,&s[j].num);
            }
            int L=1,R=n;
            sort(s+L,s+R+1,cmpNum);
            display();
        }
        return 0;
    }
    

      

  • 相关阅读:
    再学 GDI+[11]: DrawCurve 绘制曲线
    再学 GDI+[7]: DrawLines 绘制一组直线
    再学 GDI+[9]: DrawPolygon 绘制多边形
    再学 GDI+[10]: DrawClosedCurve 绘制闭合曲线
    再学 GDI+[13]: DrawBezier 绘制贝塞尔线
    再学 GDI+[8]: DrawRectangles 绘制一组矩形
    再学 GDI+[5]: DrawArc 绘制弧线
    再学 GDI+[12]: 准备工作 矩形命中
    再学 GDI+[6]: DrawPie 绘制饼形
    判断字符串中子串个数的函数
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/9232284.html
Copyright © 2011-2022 走看看