結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー ldsybldsyb
提出日時 2016-11-28 00:38:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,100 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 105,416 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-05-05 14:26:17
合計ジャッジ時間 2,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct solver{
	int score = 0;//合計得点
	int last;//最終更新時
	string name;
	map<int, int> m;
};

int main(){
	int n, t;
	cin >> n;
	pair<int, int> l[n];
	for(int i = 0; i < n; i++){
		cin >> l[i].first;
		l[i].second = 1;
	}
	map<string, solver> solvers;
	cin >> t;
	for(int i = 0; i < t; i++){
		string name;
		char pi;
		cin >> name >> pi;
		int p = pi - 'A', score = 50 * l[p].first + 500 * l[p].first / (8 + 2 * l[p].second++);
		solvers[name].score += score;
		solvers[name].last = i;
		solvers[name].name = name;
		solvers[name].m[p] = score;
	}
	vector<solver> s;
	for(auto itr = solvers.begin(); itr != solvers.end(); itr++) s.emplace_back(itr->second);
	sort(s.begin(), s.end(), [](const solver& a, const solver& b){return a.score == b.score ? a.score < b.score : a.last > b.last;});
	reverse(s.begin(), s.end());
	for(int i = 0; i < s.size(); i++){
		cout << i + 1 << ' ' << s[i].name << ' ';
		for(int j = 0; j < n; j++) cout << s[i].m[j] << ' ';
		cout << s[i].score << endl;
	}
}
0