結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー zuminzumin
提出日時 2021-03-24 23:38:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 991 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 83,716 KB
実行使用メモリ 161,160 KB
最終ジャッジ日時 2024-05-05 05:32:46
合計ジャッジ時間 32,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
157,904 KB
testcase_01 AC 286 ms
157,880 KB
testcase_02 AC 286 ms
158,032 KB
testcase_03 AC 281 ms
158,032 KB
testcase_04 AC 283 ms
157,904 KB
testcase_05 AC 288 ms
157,780 KB
testcase_06 AC 280 ms
157,904 KB
testcase_07 AC 286 ms
157,780 KB
testcase_08 AC 314 ms
157,796 KB
testcase_09 AC 282 ms
157,784 KB
testcase_10 AC 288 ms
157,844 KB
testcase_11 AC 288 ms
157,776 KB
testcase_12 AC 284 ms
157,912 KB
testcase_13 AC 289 ms
157,776 KB
testcase_14 AC 287 ms
157,904 KB
testcase_15 AC 283 ms
157,928 KB
testcase_16 AC 284 ms
158,040 KB
testcase_17 AC 291 ms
157,908 KB
testcase_18 AC 689 ms
160,896 KB
testcase_19 AC 668 ms
160,792 KB
testcase_20 AC 505 ms
159,552 KB
testcase_21 AC 316 ms
158,148 KB
testcase_22 AC 530 ms
159,724 KB
testcase_23 AC 305 ms
158,076 KB
testcase_24 AC 598 ms
160,268 KB
testcase_25 AC 506 ms
159,760 KB
testcase_26 AC 365 ms
158,532 KB
testcase_27 AC 305 ms
157,960 KB
testcase_28 AC 699 ms
161,028 KB
testcase_29 AC 693 ms
161,032 KB
testcase_30 AC 704 ms
160,904 KB
testcase_31 AC 696 ms
160,904 KB
testcase_32 AC 699 ms
161,036 KB
testcase_33 AC 719 ms
161,028 KB
testcase_34 AC 694 ms
161,064 KB
testcase_35 AC 707 ms
161,036 KB
testcase_36 AC 692 ms
161,084 KB
testcase_37 RE -
testcase_38 AC 694 ms
161,028 KB
testcase_39 AC 706 ms
161,160 KB
testcase_40 AC 692 ms
160,908 KB
testcase_41 AC 698 ms
161,032 KB
testcase_42 AC 697 ms
160,936 KB
testcase_43 AC 283 ms
157,904 KB
testcase_44 AC 290 ms
157,908 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=2001001,ans=0;
    cin>>n;

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

    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,3001001,bi);
    }
    vector<ll> csum={s.get(0)};
    ll fmin=2001001001001001001;
    ll minx;
    for(ll i=0;i<3001001;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