首页 > 其他 > 详细

PAT (Advanced Level) 1083. List Grades (25)

时间:2016-07-02 22:44:35      阅读:162      评论:0      收藏:0      [点我收藏+]

简单排序。

#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<stack>
#include<queue>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;

struct X
{
    string s;
    string c;
    int g;
}p[100000];
int n;

bool cmp(const X&a,const X&b)
{
    return a.g>b.g;
}

int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        cin>>p[i].s>>p[i].c>>p[i].g;
    sort(p+1,p+1+n,cmp);

    int flag=0;
    int L,U; scanf("%d%d",&L,&U);
    for(int i=1;i<=n;i++)
    {
        if(p[i].g>=L&&p[i].g<=U)
        {
            cout<<p[i].s<<" "<<p[i].c<<endl;
            flag=1;
        }
    }
    if(flag==0) printf("NONE\n");
    return 0;
}

 

PAT (Advanced Level) 1083. List Grades (25)

原文:http://www.cnblogs.com/zufezzt/p/5636198.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!