結果
問題 | No.553 AlphaCoder Rating |
ユーザー |
![]() |
提出日時 | 2018-06-24 17:30:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,500 ms |
コード長 | 1,040 bytes |
コンパイル時間 | 1,770 ms |
コンパイル使用メモリ | 168,320 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 22:32:04 |
合計ジャッジ時間 | 2,453 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include "bits/stdc++.h"#define REP(i,n,N) for(int i=(n); i<(N); i++)#define RREP(i,n,N) for(ll i=(N-1); i>=n; i--)#define CK(n,a,b) ((a)<=(n)&&(n)<(b))#define ALL(v) (v).begin(),(v).end()#define p(s) cout<<(s)<<endl#define p2(a,b) cout<<(a)<<" "<<(b)<<endl#define v2(T) vector<vector<T>>typedef long long ll;using namespace std;const ll inf=1e18;int N, RPerf[101];double finf = 0;double g(double x) { return pow(2, x / 800); }double gg(double x) { return 800 * log2(x); }double F(int n) {double up = 0, dn = 0;REP(i, 0, n) up += pow(0.81, i + 1);REP(i, 0, n) dn += pow(0.9, i + 1);return sqrt(up) / dn;}double f(int n) {return (F(n) - finf) / (F(1) - finf) * 1200;}double rating(int n) {double up = 0, dn = 0;REP(i, 0, n) up += g(RPerf[i]) * pow(0.9, i + 1);REP(i, 0, n) dn += pow(0.9, i + 1);return gg(up / dn) - f(n);}int main() {int n;cin>>n;REP(i, 0, n) cin>>RPerf[i];finf = 1/sqrt(19);int ans=ceil(rating(n));p(ans);return 0;}