PATB1041 考试座位号(15 分)
Posted hebust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PATB1041 考试座位号(15 分)相关的知识,希望对你有一定的参考价值。
/*
*/
#include<stdio.h>
#include<algorithm>
using namespace std;
struct stu{
char number[18];
int shi,kao;
}arr[1005];
bool cmp(stu A,stu B){
return A.shi<B.shi;
}
int main(){
int N,N1,temp;
scanf("%d",&N);
for(int i=1;i<=N;i++){
scanf(" %s %d %d",arr[i].number,&arr[i].shi,&arr[i].kao);
}
sort(&arr[1],&arr[N+1],cmp);
scanf("%d",&N1);
for(int i=0;i<N1;i++){
if(i!=0) printf("
");
scanf("%d",&temp);
printf("%s %d",arr[temp].number,arr[temp].kao);
}
return 0;
}
以上是关于PATB1041 考试座位号(15 分)的主要内容,如果未能解决你的问题,请参考以下文章