文章

166

粉丝

68

获赞

829

访问

51.3k

头像
学生查询 题解:注意数据严谨性,不一定是序号顺序输入,需要sort
P1432 北京理工大学机试题
发布于2025年3月2日 13:25
阅读数 120

#include<bits/stdc++.h>

using namespace std;

struct student{
    int id;
    string name,gender;
    int age;
    student():id(0),name(""),gender(""),age(0){};
    student(int id,string name,string gender,int age):id(id),name(name),gender(gender),age(age){};
    bool operator<(student b){
        return id<b.id;
    }
    void print(){
        cout<<id<<' '<<name<<' '<<gender<<' '<<age<<endl;
    }
};

int main(){
    int m;
    cin>>m;
    while(m--){
        int n;cin>>n;
        vector<student>a;
        while(n--){
            int id,age;
            string name,gender;
            cin>>id>>name>>gender>>age;
            a.push_back(student(id,name,gender,age));
        }
        sort(a.begin(),a.end());
        int k;cin>>k;
        a[k-1].print();
    }
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发