結果
| 問題 | No.447 ゆきこーだーの雨と雪 (2) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-11-18 23:08:51 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,135 bytes |
| 記録 | |
| コンパイル時間 | 1,718 ms |
| コンパイル使用メモリ | 206,624 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-20 18:28:07 |
| 合計ジャッジ時間 | 2,900 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 25 |
ソースコード
#include<bits/stdc++.h>
#define INF 0x3f3f3f3f
#define rep(i,n)for(int i=0;i<n;i++)
using namespace std;
typedef long long ll;
typedef pair<int, int>P;
int l[30];
int cnt[30];
int main() {
int n; scanf("%d", &n);
rep(i, n)scanf("%d", &l[i]);
map<string, P>mp;
map<string, vector<P>>k;
int t; scanf("%d", &t);
rep(i, t) {
string s; char c; cin >> s >> c; int p = (int)c;
p -= 'A';
cnt[p]++;
k[s].push_back(P(p, 50 * l[p] + (int)floor((double)50 * (double)l[p] / (0.8 + 0.2*(double)cnt[p]))));
mp[s].first += 50 * l[p] + (int)floor((double)50 * (double)l[p] / (0.8 + 0.2*(double)cnt[p]));
mp[s].second = i;
}
vector<pair<string, P>>v;
for (auto p : mp)v.push_back(p);
sort(v.begin(), v.end(), [](pair<string, P>a, pair<string, P>b) {
if (a.second.first != b.second.first)return a.second.first > b.second.first;
return a.second.second < b.second.second;
});
rep(i, v.size()) {
cout << i + 1 << ' ' << v[i].first;
rep(j, n) {
for (auto p : k[v[i].first]) {
if (p.first == j) {
cout << ' ' << p.second; goto g;
}
}
cout << " 0";
g:;
}
cout <<' '<< v[i].second.first << endl;
}
}