結果
問題 | No.1251 絶対に間違ってはいけない最小化問題 |
ユーザー | Inazuma_110 |
提出日時 | 2020-10-10 02:09:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,666 bytes |
コンパイル時間 | 5,776 ms |
コンパイル使用メモリ | 370,464 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 15:28:45 |
合計ジャッジ時間 | 17,115 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 6 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
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 | AC | 2 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_int.hpp> // #include <atcoder/all> using boost::multiprecision::cpp_int; using namespace std; // using namespace atcoder; #if __has_include("print.hpp") #include "print.hpp" #endif #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) #define ALL(x) (x).begin(), (x).end() #define RALL(x) (x).rbegin(), (x).rend() #define MOD 1000000007 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; } typedef long long ll; typedef pair<ll, ll> p; int main(){ ios::sync_with_stdio(false); cin.tie(0); ll n; cin >> n; vector<p> v(n); ll num = 0; rep(i, n) cin >> v[i].first; rep(i, n) cin >> v[i].second, num += v[i].second; sort(ALL(v)); long double c = 0; ll now = num; for (int i = 0; i < n; ++i) { now -= v[i].second; // cout << now << endl; if(num % 2 == 1){ if(now <= num/2+1){ c = v[i].first; break; } }else{ if(now == num/2){ c = (double)(v[i].first+v[i+1].first) / 2.0; break; } else if(now < num/2){ c = v[i].first; break; } } } auto f = [&](long double x){ long double val = 0; rep(i, n){ val += v[i].second*abs(x-v[i].first); } return val; }; // long double l = -1e12, r = 1e12; // ll count = 1e6; // while(count--){ // long double c1 = (l*2 + r) / 3; // long double c2 = (l + r*2) / 3; // if(f(c1) > f(c2)) l = c1; // else r = c2; // } cout << setprecision(15); cout << c << ' ' << f(c) << endl; }