ABC078C – HSI

確率pで成功するまで試行した場合、成功までの試行回数の期待値は1/pになるらしい。 なるほど

C - HSI

PDFガン見しながら解法書いていたらほぼ変わらない内容になった・・・

kaisetu

#include <bits/stdc++.h>
#define INF 1e9
using namespace std;

#define REPR(i,n) for(int i=(n); i >= 0; --i)
#define FOR(i, m, n) for(int i = (m); i < (n); ++i)
#define REP(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i)
#define ALL(a)  (a).begin(),(a).end()

template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
int gcd(int a,int b){return b?gcd(b,a%b):a;}
typedef long long ll;
ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}

int main() {
    int N,M;
    cin >> N >> M;
    cout << (1800*M+100*N)/(1/pow(2,M)) << endl;
    return 0;
}

参考

AtCoder ARC 085 C - HSI (300 点) - けんちょんの競プロ精進記録

Licensed under CC BY-NC-ND 4.0
Built with Hugo
テーマ StackJimmy によって設計されています。