HzuHtx


私信TA

用户名:hetangxin123

访问量:44769

签 名:

私はいつまでもレムが好きです。

等  级
排  名 32
经  验 14532
参赛次数 10
文章发表 76
年  龄 0
在职情况 学生
学  校 贺州学院
专  业 软件工程

  自我简介:

写不动,根本写不动

写了很久这题,一直没看到时总分的排名,提交一直错误,读了好几遍题目才看到XB3`%QP4U{[%JX]@(_PRW9J.jpg


#include"iostream"
#include "string"
#include "algorithm"
using namespace std;
struct stu
{
	int score;
	string name;
};
bool cmp(stu A, stu B)
{
	return A.score>B.score;
}
int main()
{
	int n, m;
	string a[100];
	cin >> n;
	struct stu s[100];
	struct stu t[100];
	for (int i = 0; i<n; i++)
		cin >> a[i];
	cin >> m;
	int s1;
	for (int i = 0; i<m; i++)
	{
		for (int j = 0; j<n; j++)
		{
			cin >> s[j].score >> s[j].name;
		}
		if (i == 0)
		{
			for (int j = 0; j < n; j++)
			{
				t[j].score = s[j].score;
				t[j].name = s[j].name;
			}
		}
		else
		{
			for (int j = 0; j < n; j++)
			{
				for (int o = 0; o < n; o++)
				{
					if (s[o].name == t[j].name)
					{
						t[j].score = t[j].score + s[o].score;
					}
				}
			}
		}
		sort(t, t + n, cmp);
		int p;
		for (int j = 0; j<n; j++)
		{
			if (t[j].name == a[0])
			{
				s1 = t[j].score;
				p = j;
				break;
			}
		}
		for (int j = 0; j<n; j++)
		{
			if (t[j].score <= s1)
			{
				cout << j + 1 << endl;
				break;
			}
		}
	}
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »