結果
問題 | No.2009 Drunkers' Contest |
ユーザー | Kyo_s_s |
提出日時 | 2022-07-15 22:03:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,542 bytes |
コンパイル時間 | 1,613 ms |
コンパイル使用メモリ | 170,808 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-06-27 18:01:41 |
合計ジャッジ時間 | 9,587 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 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 | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
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 | 149 ms
9,776 KB |
testcase_26 | WA | - |
testcase_27 | AC | 150 ms
9,856 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 150 ms
9,728 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 | 154 ms
9,768 KB |
testcase_45 | AC | 153 ms
9,596 KB |
testcase_46 | AC | 186 ms
9,760 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
ソースコード
#pragma region header #include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; /* alias */ using ull = unsigned long long; using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; using vi = vector<int>; using vll = vector<long long>; using vd = vector<double>; using vs = vector<string>; using vb = vector<bool>; using vpii = vector<pair<int, int>>; using vpll = vector<pair<ll, ll>>; using vvi = vector<vector<int>>; using vvll = vector<vector<long long>>; using vvd = vector<vector<double>>; using vvs = vector<vector<string>>; using vvb = vector<vector<bool>>; template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>; /* define */ #define MOD 998244353 // #define MOD 1000000007 #define INF (1LL << 60) #define inf (1 << 28) #define elif else if #define pb push_back #define pf push_front #define fi first #define se second #define all(obj) (obj).begin(), (obj).end() #define YESNO(bool) cout << (bool ? "YES\n" : "NO\n") #define YesNo(bool) cout << (bool ? "Yes\n" : "No\n") #define yesno(bool) cout << (bool ? "yes\n" : "no\n") template<class T> bool chmax(T &a, const T &b) {if(a<b){ a=b; return 1;} return 0;} template<class T> bool chmin(T &a, const T &b) {if(b<a){ a=b; return 1;} return 0;} #define debug(x) cerr << #x << ":" << x << "\n"; /* REP macro */ #define reps(i, a, n) for(int i = (a); i < (n); i++) #define rep(i, n) reps(i, 0, (n)) #define rrep(i, n) reps(i, 1, (n + 1)) #define repd(i, n) for(int i = (n - 1); i >= 0; i--) #define rrepd(i, n) for(int i = (n); i >= 1; i--) #define fore(i, a) for(auto &i: a) /* vector */ template<class T> T vmax(vector<T> &array){ T ret = array[0]; for(T a: array) chmax(ret, a); return ret; } template<class T> T vmin(vector<T> &array){ T ret = array[0]; for(T a: array) chmin(ret, a); return ret; } template<class T> T sum(vector<T> &array){ T ret = 0; for(T a:array) ret += a; return ret; } template<class T> void list_set(vector<T> &array){ sort(all(array)); array.erase(unique(all(array)),array.end()); } template<class T> T bisect_left(vector<T> &array, T key){ return lower_bound(all(array),key) - array.begin(); } template<class T> T bisect_right(vector<T> &array, T key){ return upper_bound(all(array),key) - array.begin(); } /* string */ ll string_to_ll(string n){ ll ret = 0, k = 1; while(n.length() > 0){ ret += k * (n.back() - '0'); n.pop_back(); k *= 10; } return ret; } string ll_to_string(ll n){ string ret = ""; while(n > 0){ ret.pb((n % 10) + '0'); n /= 10; } reverse(all(ret)); return ret; } struct popopo{ popopo(){ cin.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(15); }; } popopoppo; #pragma endregion header #define double long double int main(){ ll N; cin >> N; vector<double> A(N); for(int i = 0; i < N; i++) cin >> A[i]; vector<double> B(N); for(int i = 0; i < N; i++) cin >> B[i]; auto solve = [&](double x) -> double { double ret = 0.0; rep(i, N){ ret += A[i] / (1.0 + x) + B[i] * (1.0 + x); } return ret; }; double zero = solve(0); double ng = 1; while(true){ if(zero < solve(ng)) break; ng *= 10; } double ok = 0; while(abs(ok - ng) > 1e-12){ double c1 = solve((ok * 2.0 + ng) / 3.0); double c2 = solve((ok + ng * 2.0) / 3.0); if(c1 > c2){ ok = (ok * 2.0 + ng) / 3.0; }else{ ng = (ok + ng * 2.0) / 3.0; } } cout << solve(ok) << endl; }