結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー carrot46carrot46
提出日時 2020-10-15 23:27:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 173,500 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-07-20 20:07:00
合計ジャッジ時間 15,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
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 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 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 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 134 ms
7,680 KB
testcase_19 AC 131 ms
7,552 KB
testcase_20 AC 76 ms
5,632 KB
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 79 ms
5,888 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 105 ms
6,784 KB
testcase_25 AC 75 ms
5,760 KB
testcase_26 AC 29 ms
5,376 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 139 ms
7,936 KB
testcase_29 AC 137 ms
8,064 KB
testcase_30 AC 141 ms
7,936 KB
testcase_31 AC 139 ms
7,936 KB
testcase_32 AC 136 ms
7,936 KB
testcase_33 AC 135 ms
7,936 KB
testcase_34 AC 140 ms
7,936 KB
testcase_35 AC 136 ms
7,936 KB
testcase_36 AC 138 ms
7,936 KB
testcase_37 AC 135 ms
7,936 KB
testcase_38 AC 142 ms
7,936 KB
testcase_39 AC 136 ms
7,936 KB
testcase_40 AC 142 ms
8,064 KB
testcase_41 AC 136 ms
7,936 KB
testcase_42 AC 136 ms
7,936 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <chrono>
//#pragma GCC optimize("O3")
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()
#define fi first
#define se second

using ll = long long;
using vec = vector<ll>;
using mat = vector<vec>;

ll N,M,H,W,Q,K,A,B;
string S;
typedef pair<ll, ll> P;
const ll INF = (1LL<<48);

int main() {
    cin>>N;
    vec a(N+1, (ll)2e+6), b(N+1, 0), ord(N+1);
    rep(i, N) cin>>a[i];
    rep(i, N) cin>>b[i];
    iota(ALL(ord), 0);
    sort(ALL(ord), [&](int x, int y){return a[x] < a[y];});
    ll res(0);
    rep(i, N) {
        int id(ord[i]), nx(ord[i+1]);
        res += b[nx] * (a[nx] - a[ord[0]]);
        b[nx] += b[id];
    }
    int res_id(-1);
    rep(i, N){
        int id(ord[i]), nx(ord[i+1]);
        if(b[id] > b[ord[N]] - b[id]) {res_id = id; break;}
        res += (a[nx] - a[id]) * (b[id] * 2 - b[ord[N]]);
    }
    cout<<a[res_id]<<' '<<res<<endl;
}
0