結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー face4face4
提出日時 2020-10-10 17:27:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 7,136 KB
最終ジャッジ日時 2024-07-20 16:04:42
合計ジャッジ時間 14,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
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 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 144 ms
6,940 KB
testcase_19 AC 140 ms
6,892 KB
testcase_20 AC 80 ms
5,376 KB
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 88 ms
5,452 KB
testcase_23 AC 11 ms
5,376 KB
testcase_24 AC 115 ms
6,628 KB
testcase_25 AC 84 ms
5,376 KB
testcase_26 AC 31 ms
5,376 KB
testcase_27 AC 11 ms
5,376 KB
testcase_28 AC 152 ms
7,012 KB
testcase_29 AC 152 ms
6,924 KB
testcase_30 AC 150 ms
6,940 KB
testcase_31 AC 152 ms
7,008 KB
testcase_32 AC 154 ms
7,008 KB
testcase_33 AC 152 ms
7,136 KB
testcase_34 AC 152 ms
6,968 KB
testcase_35 AC 151 ms
7,008 KB
testcase_36 AC 152 ms
6,964 KB
testcase_37 AC 152 ms
7,136 KB
testcase_38 AC 153 ms
6,968 KB
testcase_39 AC 152 ms
7,012 KB
testcase_40 AC 152 ms
7,008 KB
testcase_41 AC 152 ms
7,008 KB
testcase_42 AC 152 ms
7,012 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/iostream:39,
                 from main.cpp:1:
In member function 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits<char>]',
    inlined from 'int main()' at main.cpp:32:13:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/ostream:202:25: warning: 'piv' may be used uninitialized [-Wmaybe-uninitialized]
  202 |       { return _M_insert(__n); }
      |                ~~~~~~~~~^~~~~
main.cpp: In function 'int main()':
main.cpp:20:17: note: 'piv' was declared here
   20 |     ll acc = 0, piv;
      |                 ^~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<numeric>
using namespace std;

typedef long long ll;
typedef pair<int,int> pii;

int main(){
    int n;
    cin >> n;
    int a[n], b[n];
    for(int i = 0; i < n; i++)  cin >> a[i];
    for(int i = 0; i < n; i++)  cin >> b[i];
    vector<pii> vp;
    for(int i = 0; i < n; i++)  vp.push_back({a[i], b[i]});
    sort(vp.begin(), vp.end());
    ll sum = accumulate(b, b+n, 0ll);
    ll acc = 0, piv;
    for(int i = 0; i < n; i++){
        acc += vp[i].second;
        if(acc >= (sum+1)/2){
            piv = vp[i].first;
            break;
        }
    }
    ll ans = 0;
    for(int i = 0; i < n; i++){
        ans += (ll)b[i] * abs(piv-a[i]);
    }
    cout << piv << " " << ans << endl;
    return 0;
}
0