记录编号 49991 评测结果 AAAAAAAAAA
题目名称 NBA总冠军 最终得分 100
用户昵称 Gravatarcstdio 是否通过 通过
代码语言 C++ 运行时间 0.006 s
提交时间 2012-11-10 17:52:01 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
struct team{
	int year;
	char city[200];
};
bool cmp(struct team a,struct team b){
	if(a.year>b.year) return 1;
	return 0;
}
int main(){
	freopen("nba.in","r",stdin);
	freopen("nba.out","w",stdout);
	int n,i;
	struct team s[51];
	scanf("%d\n",&n);
	for(i=0;i<n;i++){
		scanf("%[^0-9]%d\n",&s[i].city,&s[i].year);
		//cin>>s[i].city>>s[i].year;
	}
	sort(s,s+n,cmp);
	for(i=n-1;i>=0;i--){
		if(i==0||s[i].year!=s[i-1].year) cout<<s[i].year<<" "<<s[i].city<<endl;
	}
	return 0;
}