結果
問題 | No.447 ゆきこーだーの雨と雪 (2) |
ユーザー | naimonon77 |
提出日時 | 2016-11-18 23:12:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 58 ms / 2,000 ms |
コード長 | 1,775 bytes |
コンパイル時間 | 2,370 ms |
コンパイル使用メモリ | 196,452 KB |
実行使用メモリ | 17,604 KB |
最終ジャッジ日時 | 2024-11-26 08:30:45 |
合計ジャッジ時間 | 3,755 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
9,696 KB |
testcase_01 | AC | 4 ms
9,860 KB |
testcase_02 | AC | 5 ms
10,320 KB |
testcase_03 | AC | 9 ms
10,220 KB |
testcase_04 | AC | 8 ms
10,304 KB |
testcase_05 | AC | 17 ms
11,332 KB |
testcase_06 | AC | 42 ms
14,788 KB |
testcase_07 | AC | 18 ms
11,336 KB |
testcase_08 | AC | 23 ms
12,600 KB |
testcase_09 | AC | 32 ms
13,140 KB |
testcase_10 | AC | 9 ms
10,544 KB |
testcase_11 | AC | 11 ms
10,884 KB |
testcase_12 | AC | 13 ms
11,072 KB |
testcase_13 | AC | 28 ms
12,872 KB |
testcase_14 | AC | 34 ms
13,256 KB |
testcase_15 | AC | 12 ms
11,464 KB |
testcase_16 | AC | 11 ms
10,992 KB |
testcase_17 | AC | 9 ms
10,436 KB |
testcase_18 | AC | 6 ms
9,944 KB |
testcase_19 | AC | 58 ms
17,604 KB |
testcase_20 | AC | 38 ms
13,764 KB |
testcase_21 | AC | 13 ms
11,204 KB |
testcase_22 | AC | 9 ms
10,312 KB |
testcase_23 | AC | 14 ms
11,248 KB |
testcase_24 | AC | 37 ms
15,072 KB |
testcase_25 | AC | 52 ms
16,836 KB |
testcase_26 | AC | 21 ms
12,356 KB |
testcase_27 | AC | 19 ms
11,844 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS#define _USE_MATH_DEFINES#include "bits/stdc++.h"#define REP(i,a,b) for(int i=a;i<b;++i)#define rep(i,n) REP(i,0,n)typedef long long ll;typedef unsigned long long ull;typedef long double ld;#define ALL(a) begin(a),end(a)#define ifnot(a) if(not (a))#define dump(x) cerr << #x << " = " << (x) << endlusing namespace std;// #define int ll#ifdef _MSC_VERconst bool test = true;#elseconst bool test = false;#endifint dx[] = { 0,1,0,-1 };int dy[] = { 1,0,-1,0 };#define INF (1 << 28)ull mod = (int)1e9 + 7;//.....................const int MAX = (int)2e5 + 5;int N;int L[MAX];int T;string name[MAX];char P[MAX];int solve_pro_cnt[MAX];int pro_score[100][100];map<pair<string, int>, int> each_score;struct Pro {int score, time;string name;bool operator < (const Pro& p) const {if (score < p.score) return true;if (score > p.score) return false;if (time < p.time) return false;if (time > p.time) return true;return false;}};int getscore(int l, int n, string name) {solve_pro_cnt[n]++;int res = 50 * l + 50 * l * 10 / (8 + 2 * solve_pro_cnt[n]);each_score[{name, n}] = res;return res;}int main() {cin >> N;rep(i, N) cin >> L[i];cin >> T;rep(i, T) {cin >> name[i] >> P[i];P[i] -= 'A';}map<string, pair<int, int>> m;rep(i, T) {int tmp = getscore(L[P[i]], P[i], name[i]);m[name[i]].first += tmp;m[name[i]].second = i;}vector<Pro> v;for (auto a : m) {v.push_back({ a.second.first, a.second.second ,a.first });}sort(ALL(v));rep(i, v.size()) {cout << i + 1;int j = v.size() - 1 - i;cout << " " << v[j].name;rep(i, N) {cout << " " << each_score[{v[j].name, i}];}cout << " " << v[j].score;cout << endl;}return 0;}