北京大学 小白鼠排队 Easy

南楼画角 提交于 2020-03-10 19:37:49

基本思想:

无;

 

关键点:

无;

 

#include<string>
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

struct mouse {
	int weight;
	string color;
};

mouse num[120];

bool cmp(mouse a, mouse b) {
	return a.weight > b.weight;
}

int main() {
	int n;
	while (cin >> n) {
		for (int i = 0; i < n; i++) {
			cin >> num[i].weight >> num[i].color;
		}
		sort(num, num + n, cmp);
		for (int i = 0; i < n; i++) {
			cout << num[i].color << endl;
		}
	}
}

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!