結果

問題 No.2009 Drunkers' Contest
ユーザー milanis48663220milanis48663220
提出日時 2022-07-15 22:38:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,332 bytes
コンパイル時間 1,141 ms
コンパイル使用メモリ 124,828 KB
実行使用メモリ 6,852 KB
最終ジャッジ日時 2023-09-10 03:36:28
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 55 ms
6,256 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 55 ms
6,144 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 58 ms
6,300 KB
testcase_45 AC 58 ms
6,128 KB
testcase_46 AC 45 ms
6,304 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 45 ms
6,772 KB
testcase_54 AC 45 ms
6,844 KB
testcase_55 AC 44 ms
6,692 KB
testcase_56 AC 44 ms
6,732 KB
testcase_57 AC 44 ms
6,852 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;
    for(int i = n-1; i >= 0; i--){
        ll aa = a[i], bb = b[i], xx = f(a[i], b[i]);
        while(true){
            if(vt.empty()){
                vt.push_back(T(aa, bb, xx));
                break;
            }
            auto [a_next, b_next, x_next] = vt.back();
            if(xx < x_next){
                vt.push_back(T(aa, bb, xx));
                break;
            }else{
                vt.pop_back();
                aa += a_next;
                bb += b_next;
                xx = f(aa, bb);
            }
        }
        
    }
    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