結果

問題 No.2009 Drunkers' Contest
ユーザー milanis48663220milanis48663220
提出日時 2022-07-15 22:59:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,654 bytes
コンパイル時間 1,310 ms
コンパイル使用メモリ 125,560 KB
実行使用メモリ 13,864 KB
最終ジャッジ日時 2023-09-10 04:24:47
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 WA -
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 WA -
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 3 ms
4,380 KB
testcase_20 AC 3 ms
4,380 KB
testcase_21 WA -
testcase_22 AC 3 ms
4,380 KB
testcase_23 WA -
testcase_24 AC 59 ms
6,248 KB
testcase_25 AC 60 ms
6,224 KB
testcase_26 AC 60 ms
6,220 KB
testcase_27 AC 60 ms
6,200 KB
testcase_28 AC 60 ms
6,056 KB
testcase_29 AC 60 ms
6,056 KB
testcase_30 AC 61 ms
6,144 KB
testcase_31 AC 61 ms
6,252 KB
testcase_32 AC 60 ms
6,252 KB
testcase_33 AC 60 ms
6,256 KB
testcase_34 AC 54 ms
6,204 KB
testcase_35 AC 53 ms
6,108 KB
testcase_36 AC 53 ms
6,204 KB
testcase_37 AC 54 ms
6,300 KB
testcase_38 AC 54 ms
6,344 KB
testcase_39 AC 53 ms
6,128 KB
testcase_40 AC 54 ms
6,136 KB
testcase_41 AC 54 ms
6,176 KB
testcase_42 AC 53 ms
6,156 KB
testcase_43 AC 53 ms
6,212 KB
testcase_44 AC 63 ms
13,864 KB
testcase_45 AC 62 ms
12,712 KB
testcase_46 AC 43 ms
6,204 KB
testcase_47 AC 39 ms
6,728 KB
testcase_48 AC 40 ms
6,548 KB
testcase_49 AC 40 ms
6,532 KB
testcase_50 WA -
testcase_51 AC 40 ms
6,168 KB
testcase_52 AC 40 ms
6,192 KB
testcase_53 AC 49 ms
9,324 KB
testcase_54 AC 47 ms
9,560 KB
testcase_55 AC 46 ms
6,716 KB
testcase_56 AC 45 ms
6,756 KB
testcase_57 AC 46 ms
7,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

using P = pair<ll, ll>;
using T = tuple<ll, ll, double>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; cin >> n;
    vector<ll> a(n), b(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    for(int i = 0; i < n; i++) cin >> b[i];
    auto f = [&](ll a, ll b){
        double x = sqrt((double)a/(double)b);
        return max(x, 1.0);
    };
    vector<T> vt;
    function<void()> optimize = [&](){
        if(vt.size() <= 1) return;
        auto [a1, b1, x1] = vt.back();
        auto [a0, b0, x0] = vt[vt.size()-2];
        if(x1 > x0){
            vt.pop_back(); vt.pop_back();
            vt.push_back(T(a0+a1, b0+b1, f(a0+a1, b0+b1)));
            optimize();
        }else{
            double t0 = (double)a0/x0 + (double)b0*x0;
            double t1 = (double)a1/x1 + (double)b1*x1;

            double aa = a0+a1, bb = b0+b1, xx = f(aa, bb);
            double tt = (double)aa/xx + (double)bb*xx;
            if(tt < t0+t1){
                vt.pop_back(); vt.pop_back();
                vt.push_back(T(aa, bb, xx));
                optimize();
            }
        }
    };
    for(int i = n-1; i >= 0; i--){
        ll aa = a[i], bb = b[i], xx = f(a[i], b[i]);
        vt.push_back(T(aa, bb, xx));
        optimize();
    }
    double ans = 0.0;
    for(auto [a, b, x]: vt){
        // cout << a << ' ' << b << ' ' << x << endl;
        ans += (double)a/x + (double)b*x;
    }
    cout << ans << endl;
}
0