結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー furafura
提出日時 2020-05-15 00:37:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 2,816 ms
コンパイル使用メモリ 226,716 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-09-16 05:39:01
合計ジャッジ時間 4,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 33 ms
7,680 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 26 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 10 ms
6,944 KB
testcase_13 AC 21 ms
6,940 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 9 ms
6,944 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 49 ms
9,856 KB
testcase_20 AC 31 ms
7,040 KB
testcase_21 AC 9 ms
6,940 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 10 ms
6,944 KB
testcase_24 AC 31 ms
7,552 KB
testcase_25 AC 43 ms
9,216 KB
testcase_26 AC 16 ms
6,940 KB
testcase_27 AC 15 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n; cin>>n;
	vector<int> star(n);
	rep(i,n) cin>>star[i];

	map<string,pair<int,int>> sum;
	vector<map<string,int>> score(n);
	vector<int> cnt(n,1);
	int q; cin>>q;
	rep(t,q){
		string s;
		char c; cin>>s>>c;
		int id=c-'A';
		score[id][s]=50*star[id]+50*star[id]/(0.8+0.2*cnt[id]);
		sum[s].first+=score[id][s];
		sum[s].second=t;
		cnt[id]++;
	}

	map<pair<int,int>,string> f;
	for(auto p:sum) f[{-p.second.first,p.second.second}]=p.first;

	int i=0;
	for(auto p:f){
		cout<<i+1<<' '<<p.second;
		rep(i,n) cout<<' '<<score[i][p.second];
		cout<<' '<<sum[p.second].first<<'\n';
		i++;
	}

	return 0;
}
0