记录编号 |
56932 |
评测结果 |
WWWWWWWWAW |
题目名称 |
NBA总冠军 |
最终得分 |
10 |
用户昵称 |
hurricane |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.014 s |
提交时间 |
2013-04-05 08:52:25 |
内存使用 |
3.15 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<string>
#include<cstring>
using namespace std;
struct student
{
string s;
int year;
};
int main()
{
freopen("nba.in","r",stdin);
freopen("nba.out","w",stdout);
ios::sync_with_stdio(false);
int N;
scanf("%d",&N);
student stu[N],tt;
for(int i=0;i<N;i++)
cin>>stu[i].s>>stu[i].year;
for(int i=0;i<N-1;i++)
for(int j=0;j<N-i-1;j++)
if(stu[j].year>stu[j+1].year)
{
tt=stu[j];
stu[j]=stu[j+1];
stu[j+1]=tt;
}
for(int i=0;i<N;i++)
cout<<stu[i].year<<" "<<stu[i].s<<endl;
return 0;
}