結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー fiordfiord
提出日時 2017-03-01 19:50:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 1,396 ms
コンパイル使用メモリ 105,012 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 22:41:52
合計ジャッジ時間 2,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
	int n;	cin>>n;
	vector<int> l(n);
	for(int i=0;i<n;i++)	cin>>l[i];
	vector<int> cnt(n,1);
	int t;	cin>>t;
	map<string,vector<int>> mp;
	map<string,pair<int,int>> sum;
	for(int i=0;i<t;i++){
		string s,c;	cin>>s>>c;
		if(mp[s].empty())	mp[s]=vector<int>(n,0);
		int num=c[0]-'A';
		int add=50*l[num]+50*l[num]/(0.8+0.2*cnt[num]++);
		mp[s][num]=add;
		sum[s]=make_pair(sum[s].first+add,-i);
	}
	vector<pair<pair<int,int>,string>> rank;
	for(auto i:sum)	rank.push_back(make_pair(i.second,i.first));
	sort(rank.begin(),rank.end());	reverse(rank.begin(),rank.end());
	int i=1;
	for(auto out:rank){
		cout<<i++<<" "<<out.second;
		for(int i=0;i<n;i++)	cout<<" "<<mp[out.second][i];
		cout<<" "<<out.first.first<<endl;
	}
	return 0;
}
0