結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー zuminzumin
提出日時 2021-03-25 00:00:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 83,868 KB
実行使用メモリ 87,692 KB
最終ジャッジ日時 2024-11-26 23:42:10
合計ジャッジ時間 28,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
84,428 KB
testcase_01 AC 191 ms
84,564 KB
testcase_02 AC 191 ms
84,556 KB
testcase_03 AC 191 ms
84,460 KB
testcase_04 AC 192 ms
84,432 KB
testcase_05 AC 188 ms
84,404 KB
testcase_06 AC 194 ms
84,376 KB
testcase_07 AC 194 ms
84,560 KB
testcase_08 AC 193 ms
84,440 KB
testcase_09 AC 191 ms
84,568 KB
testcase_10 AC 192 ms
84,336 KB
testcase_11 AC 191 ms
84,432 KB
testcase_12 AC 193 ms
84,492 KB
testcase_13 AC 191 ms
84,556 KB
testcase_14 AC 189 ms
84,552 KB
testcase_15 AC 189 ms
84,384 KB
testcase_16 AC 192 ms
84,432 KB
testcase_17 AC 191 ms
84,564 KB
testcase_18 AC 593 ms
87,424 KB
testcase_19 AC 564 ms
87,316 KB
testcase_20 AC 408 ms
86,212 KB
testcase_21 AC 226 ms
84,808 KB
testcase_22 AC 432 ms
86,228 KB
testcase_23 AC 213 ms
84,692 KB
testcase_24 AC 516 ms
86,924 KB
testcase_25 AC 421 ms
86,240 KB
testcase_26 AC 276 ms
85,188 KB
testcase_27 AC 217 ms
84,736 KB
testcase_28 AC 612 ms
87,556 KB
testcase_29 AC 609 ms
87,560 KB
testcase_30 AC 597 ms
87,692 KB
testcase_31 AC 606 ms
87,676 KB
testcase_32 AC 615 ms
87,692 KB
testcase_33 AC 598 ms
87,500 KB
testcase_34 AC 593 ms
87,692 KB
testcase_35 AC 590 ms
87,688 KB
testcase_36 AC 592 ms
87,644 KB
testcase_37 AC 622 ms
87,556 KB
testcase_38 AC 617 ms
87,456 KB
testcase_39 AC 598 ms
87,632 KB
testcase_40 AC 605 ms
87,632 KB
testcase_41 AC 597 ms
87,692 KB
testcase_42 AC 605 ms
87,604 KB
testcase_43 AC 188 ms
84,560 KB
testcase_44 AC 186 ms
84,412 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:43:11:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/ostream:202:25: warning: 'minx' may be used uninitialized [-Wmaybe-uninitialized]
  202 |       { return _M_insert(__n); }
      |                ~~~~~~~~~^~~~~
main.cpp: In function 'int main()':
main.cpp:34:8: note: 'minx' was declared here
   34 |     ll minx;
      |        ^~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <atcoder/lazysegtree>

using namespace std;
using namespace atcoder;
using ll=long long;

ll op(ll a,ll b) {return a+b;}
ll e() {return 0LL;}
ll mapping(ll F,ll x) {return F+x;}
ll composition(ll F,ll G) {return F+G;}
ll id(){ return 0LL;}

int main(){
    ll n,dx=1000001,ans=0;
    cin>>n;

    vector<ll> a(n),b(n);
    lazy_segtree<ll,op,e,ll,mapping,composition,id> s(2000002);

    for(int i=0;i<n;i++) {cin>>a[i];a[i]+=dx;}
    for(int i=0;i<n;i++) cin>>b[i];
    
    for(int i=0;i<n;i++){
        ll ai=a[i],bi=b[i];
        s.apply(0,bi*ai);
        s.apply(1,ai+1,-bi);
        s.apply(ai+1,2000002,bi);
    }
    vector<ll> csum={s.get(0)};
    ll fmin=2001001001001001001;
    ll minx;
    for(ll i=0;i<2000001;i++){
        csum.push_back(csum[i]+s.get(i+1));
        ll f=csum[i+1];
        if(f<fmin){
            fmin=f;
            minx=i+1-dx;
        }
    }
    cout<<minx<<" "<<fmin<<endl;

    return 0;
}
0