結果
問題 | No.447 ゆきこーだーの雨と雪 (2) |
ユーザー | co_co_cocoa |
提出日時 | 2016-11-18 23:11:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,341 bytes |
コンパイル時間 | 1,560 ms |
コンパイル使用メモリ | 103,684 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-05-04 18:46:09 |
合計ジャッジ時間 | 2,613 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 | - |
ソースコード
#include<iostream> #include<cmath> #include<map> #include<vector> #include<algorithm> #include<string> using namespace std; typedef pair<int,string> P; int main(){ map<string,map<char,int> > m; map<char,int> dict; for(int i=0;i<26;i++){ char tmp='A'+i; dict[tmp]=i; } int N; cin>>N; int diffi[26]; for(int i=0;i<N;i++){ cin>>diffi[i]; } int appea[26]={}; int K; cin>>K; for(int i=0;i<K;i++){ string str; char tmp; cin>>str>>tmp; appea[dict[tmp]]++; //点数の計算 double wari = 0.8+0.2*appea[dict[tmp]]; int poi = 50*diffi[dict[tmp]] + (int)((50.0*diffi[dict[tmp]])/wari); m[str][tmp]=poi; } P suum[4001]; int l=0; for(map<string,map<char,int> >::iterator itr=m.begin();itr!=m.end();itr++){ int tot=0; for(int i=0;i<N;i++){ char tmp='A'+i; tot+=((*itr).second)[tmp]; } suum[l]=P(tot,(*itr).first); l++; } sort(suum,suum+l); int k=1; for(int i=l-1;i>=0;i--){ cout<<k<<' '<<suum[i].second<<' '; for(int j=0;j<N;j++){ char tmp='A'+j; cout<<m[suum[i].second][tmp]<<' '; } cout<<suum[i].first<<endl; k++; } return 0; }