結果

問題 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,272 ms
コンパイル使用メモリ 127,108 KB
実行使用メモリ 12,704 KB
最終ジャッジ日時 2024-06-27 20:06:41
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 3 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 55 ms
6,528 KB
testcase_25 AC 54 ms
6,656 KB
testcase_26 AC 56 ms
6,656 KB
testcase_27 AC 54 ms
6,656 KB
testcase_28 AC 55 ms
6,656 KB
testcase_29 AC 56 ms
6,656 KB
testcase_30 AC 55 ms
6,656 KB
testcase_31 AC 56 ms
6,400 KB
testcase_32 AC 56 ms
6,656 KB
testcase_33 AC 56 ms
6,656 KB
testcase_34 AC 51 ms
6,656 KB
testcase_35 AC 50 ms
6,656 KB
testcase_36 AC 50 ms
6,656 KB
testcase_37 AC 50 ms
6,656 KB
testcase_38 AC 51 ms
6,656 KB
testcase_39 AC 50 ms
6,528 KB
testcase_40 AC 50 ms
6,656 KB
testcase_41 AC 49 ms
6,656 KB
testcase_42 AC 51 ms
6,400 KB
testcase_43 AC 50 ms
6,656 KB
testcase_44 AC 58 ms
12,704 KB
testcase_45 AC 57 ms
12,572 KB
testcase_46 AC 42 ms
6,656 KB
testcase_47 AC 37 ms
6,784 KB
testcase_48 AC 37 ms
6,784 KB
testcase_49 AC 37 ms
6,784 KB
testcase_50 WA -
testcase_51 AC 36 ms
6,528 KB
testcase_52 AC 36 ms
6,656 KB
testcase_53 AC 45 ms
9,500 KB
testcase_54 AC 43 ms
9,504 KB
testcase_55 AC 40 ms
7,008 KB
testcase_56 AC 39 ms
6,784 KB
testcase_57 AC 43 ms
7,328 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