結果

問題 No.1478 Simple Sugoroku
ユーザー altair_kyoproaltair_kyopro
提出日時 2021-06-05 23:50:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 4,966 bytes
コンパイル時間 1,421 ms
コンパイル使用メモリ 171,896 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-05-01 18:12:07
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 13 ms
5,760 KB
testcase_14 AC 12 ms
6,016 KB
testcase_15 AC 13 ms
6,016 KB
testcase_16 AC 12 ms
5,888 KB
testcase_17 AC 12 ms
5,888 KB
testcase_18 AC 14 ms
5,888 KB
testcase_19 AC 13 ms
6,016 KB
testcase_20 AC 12 ms
6,016 KB
testcase_21 AC 13 ms
5,888 KB
testcase_22 AC 13 ms
6,016 KB
testcase_23 AC 13 ms
6,016 KB
testcase_24 AC 13 ms
6,016 KB
testcase_25 AC 13 ms
6,016 KB
testcase_26 AC 12 ms
6,016 KB
testcase_27 AC 14 ms
6,016 KB
testcase_28 AC 10 ms
6,016 KB
testcase_29 AC 11 ms
5,888 KB
testcase_30 AC 11 ms
5,760 KB
testcase_31 AC 12 ms
6,016 KB
testcase_32 AC 12 ms
5,888 KB
testcase_33 AC 13 ms
6,016 KB
testcase_34 AC 13 ms
6,016 KB
testcase_35 AC 12 ms
6,016 KB
testcase_36 AC 13 ms
5,760 KB
testcase_37 AC 14 ms
5,888 KB
testcase_38 AC 14 ms
5,760 KB
testcase_39 AC 14 ms
5,888 KB
testcase_40 AC 12 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef __LOCAL
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<int,int>;
using PIL = pair<int,ll>;
using PLI = pair<ll,int>;
using PLL = pair<ll,ll>;
using Graph = vector<vector<int>>;
using Cost_Graph = vector<vector<PIL>>;

template<class T> bool chmin(T &a, T b) {if(a>b){a=b;return 1;}return 0;}
template<class T> bool chmax(T &a, T b) {if(a<b){a=b;return 1;}return 0;}
template<class T> void show_vec(T v) {for (int i=0;i<v.size();i++) cout<<v[i]<<endl;}
template<class T> void show_pair(T p) {cout<<p.first<<" "<<p.second<<endl;}
template<class T> bool judge_digit(T bit,T i) {return (((bit&(1LL<<i))!=0)?1:0);}
#define REP(i,n) for(int i=0;i<int(n);i++)
#define ROUNDUP(a,b) (((a)+(b)-1)/(b))
#define YESNO(T) cout<<(T?"YES":"NO")<<endl
#define yesno(T) cout<<(T?"yes":"no")<<endl
#define YesNo(T) cout<<(T?"Yes":"No")<<endl

const int INFint = 1 << 29;
const ll INF = 1LL << 40;
const ll MOD = 1000000007LL;
const double pi = 3.14159265358979;
const vector<int> h_idx4 = {-1, 0,0,1};
const vector<int> w_idx4 = { 0,-1,1,0};
const vector<int> h_idx8 = {-1,-1,-1, 0,0, 1,1,1};
const vector<int> w_idx8 = {-1, 0, 1,-1,1,-1,0,1};

double seg_op(double a,double b){ return min(a,b); }
double seg_e(){ return (double)INF; }
template <class S, S (*op)(S, S), S (*e)()> struct segtree {
  public:
    segtree() : segtree(0) {}
    segtree(int n) : segtree(std::vector<S>(n, e())) {}
    segtree(const std::vector<S>& v) : _n(int(v.size())) {
        log = ceil_pow2(_n);
        size = 1 << log;
        d = std::vector<S>(2 * size, e());
        for (int i = 0; i < _n; i++) d[size + i] = v[i];
        for (int i = size - 1; i >= 1; i--) {
            update(i);
        }
    }
 
    void set(int p, S x) {
        assert(0 <= p && p < _n);
        p += size;
        d[p] = x;
        for (int i = 1; i <= log; i++) update(p >> i);
    }
 
    S get(int p) {
        assert(0 <= p && p < _n);
        return d[p + size];
    }
 
    S prod(int l, int r) {
        assert(0 <= l && l <= r && r <= _n);
        S sml = e(), smr = e();
        l += size;
        r += size;
 
        while (l < r) {
            if (l & 1) sml = op(sml, d[l++]);
            if (r & 1) smr = op(d[--r], smr);
            l >>= 1;
            r >>= 1;
        }
        return op(sml, smr);
    }
 
    S all_prod() { return d[1]; }
 
    template <bool (*f)(S)> int max_right(int l) {
        return max_right(l, [](S x) { return f(x); });
    }
    template <class F> int max_right(int l, F f) {
        assert(0 <= l && l <= _n);
        assert(f(e()));
        if (l == _n) return _n;
        l += size;
        S sm = e();
        do {
            while (l % 2 == 0) l >>= 1;
            if (!f(op(sm, d[l]))) {
                while (l < size) {
                    l = (2 * l);
                    if (f(op(sm, d[l]))) {
                        sm = op(sm, d[l]);
                        l++;
                    }
                }
                return l - size;
            }
            sm = op(sm, d[l]);
            l++;
        } while ((l & -l) != l);
        return _n;
    }
 
    template <bool (*f)(S)> int min_left(int r) {
        return min_left(r, [](S x) { return f(x); });
    }
    template <class F> int min_left(int r, F f) {
        assert(0 <= r && r <= _n);
        assert(f(e()));
        if (r == 0) return 0;
        r += size;
        S sm = e();
        do {
            r--;
            while (r > 1 && (r % 2)) r >>= 1;
            if (!f(op(d[r], sm))) {
                while (r < size) {
                    r = (2 * r + 1);
                    if (f(op(d[r], sm))) {
                        sm = op(d[r], sm);
                        r--;
                    }
                }
                return r + 1 - size;
            }
            sm = op(d[r], sm);
        } while ((r & -r) != r);
        return 0;
    }
 
  private:
    int _n, size, log;
    std::vector<S> d;
 
    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }

    // @param n `0 <= n`
    // @return minimum non-negative `x` s.t. `n <= 2**x`
    int ceil_pow2(int n) {
        int x = 0;
        while ((1U << x) < (unsigned int)(n)) x++;
        return x;
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(15);

    ll n,m;
    cin >> n >> m;
    vector<ll> b(m);
    for (int i = 0; i < m; i++){
        cin >> b[i];
    }

    vector<double> c(m);
    for (int i = 0; i < m; i++){
        c[i] = (double)(b[m - 1] - b[i]);
    }

    vector<double> s(m + 1);
    s[m] = 0;
    for (int i = m; i > 0; i--){
        s[i - 1] = s[i] + c[i - 1];
    }
    // show_vec(s);

    double dm = (double)m;

    double ans = c[0];
    for (int i = 1; i < m; i++){
        double di = (double)i;
        double t = (dm / (dm - di)) + ((1.0 / (dm - di)) * s[i]);

        chmin(ans,t);
    }

    cout << ans + (b[0] - 1) + (n - b[m - 1]) << endl;
}
0