結果

問題 No.553 AlphaCoder Rating
ユーザー tottoripapertottoripaper
提出日時 2018-03-13 18:40:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,500 ms
コード長 1,155 bytes
コンパイル時間 1,592 ms
コンパイル使用メモリ 166,052 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 02:30:51
合計ジャッジ時間 2,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define unless(p) if(!(p))
#define until(p) while(!(p))

using ll = long long;
using P = std::tuple<int,int>;

const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};

int N;
double RPerf[110];

double F(int n){
    double a = 0.81, b = 0.9, s = 0, t = 0;
    for(int i=0;i<n;++i){
        s += a;
        t += b;
        a *= 0.81;
        b *= 0.9;
    }

    return sqrt(s) / t;
}

double f(int n){
    double alpha = 1, beta = sqrt(19) / 19;
    return (F(n) - beta) / (alpha - beta) * 1200;
}

double g(double x){
    return pow(2.0, x / 800);
}

double inv_g(double y){
    return 800. * log2(y);
}

double rating(){
    double s = 0., x = 0.9, t = 0.;
    for(int i=0;i<N;++i){
        s += g(RPerf[i]) * x;
        t += x;
        x *= 0.9;
    }

    return inv_g(s / t) - f(N);
}

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    std::cin >> N;

    for(int i=0;i<N;++i){
        std::cin >> RPerf[i];
    }

    printf("%d\n", (int)rating());
}
0