結果
問題 | No.447 ゆきこーだーの雨と雪 (2) |
ユーザー | ikd |
提出日時 | 2016-11-18 23:35:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,524 bytes |
コンパイル時間 | 1,129 ms |
コンパイル使用メモリ | 105,420 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 18:54:38 |
合計ジャッジ時間 | 4,557 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
#include<iostream> #include<queue> #include<tuple> #include<algorithm> #include<set> #include<map> using namespace std; const double hoge=1e-6; int calc(int N, int K){ return 50*N+(int)(hoge+(50*N)/(0.8+0.2*K)); } int main(){ int N; cin>> N; int L[N]; for(int i=0; i<N; i++) cin>> L[i]; int T; cin>> T; string name[T]; int P[T]; for(int i=0; i<T; i++){ char p; cin>> name[i]>> p; P[i]=p-'A'; } vector<tuple<int, int, string>> v; set<string> pa; for(int i=0; i<T; i++){ pa.insert(name[i]); } int M=pa.size();// 参加者 map<string, int> s; int sol[N]; for(int i=0; i<N; i++) sol[i]=1; map<string, int> last; map<string, int> ha; vector<int> score[M]; for(int i=0; i<M; i++){ for(int j=0; j<N; j++){ score[i].push_back(0); } } for(int i=0; i<T; i++){ s[name[i]]+=calc(L[P[i]], sol[P[i]]); if(!ha.count(name[i])){ ha[name[i]]=ha.size()-1; } score[ha[name[i]]][P[i]]=calc(L[P[i]], sol[P[i]]); sol[P[i]]++; last[name[i]]=i; } for(auto it: s){ string NAME=it.first; int SCORE=it.second; v.push_back(make_tuple(SCORE, -last[NAME], NAME)); } sort(v.rbegin(), v.rend()); for(int i=0; i<M; i++){ int SCORE, aiueo; string NAME; tie(SCORE, aiueo, NAME)=v[i]; cout<< i+1<< " "<< NAME<< " "; for(int j=0; j<N; j++){ cout<< score[ha[NAME]][j]<<" "; } cout<< SCORE<< endl; } return 0; }