結果

問題 No.2488 Mod Sum Maximization
ユーザー pockynypockyny
提出日時 2023-10-29 22:33:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 995 bytes
コンパイル時間 1,193 ms
コンパイル使用メモリ 97,512 KB
実行使用メモリ 38,040 KB
最終ジャッジ日時 2024-09-25 16:56:01
合計ジャッジ時間 32,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 946 ms
35,676 KB
testcase_01 AC 341 ms
35,604 KB
testcase_02 AC 18 ms
35,568 KB
testcase_03 AC 1,281 ms
38,040 KB
testcase_04 AC 1,273 ms
37,972 KB
testcase_05 AC 1,285 ms
38,012 KB
testcase_06 AC 1,194 ms
37,792 KB
testcase_07 AC 888 ms
37,312 KB
testcase_08 AC 1,254 ms
37,920 KB
testcase_09 AC 965 ms
37,536 KB
testcase_10 AC 726 ms
36,968 KB
testcase_11 AC 55 ms
35,624 KB
testcase_12 AC 666 ms
36,732 KB
testcase_13 AC 554 ms
36,536 KB
testcase_14 AC 145 ms
35,860 KB
testcase_15 AC 784 ms
37,092 KB
testcase_16 AC 64 ms
35,684 KB
testcase_17 AC 263 ms
36,184 KB
testcase_18 AC 91 ms
35,732 KB
testcase_19 AC 1,034 ms
37,600 KB
testcase_20 AC 1,117 ms
37,728 KB
testcase_21 AC 1,098 ms
37,588 KB
testcase_22 AC 1,224 ms
37,824 KB
testcase_23 AC 1,270 ms
37,860 KB
testcase_24 AC 487 ms
36,548 KB
testcase_25 AC 46 ms
35,748 KB
testcase_26 AC 88 ms
35,744 KB
testcase_27 AC 1,315 ms
36,968 KB
testcase_28 AC 1,419 ms
36,884 KB
testcase_29 AC 1,036 ms
36,780 KB
testcase_30 AC 842 ms
36,532 KB
testcase_31 AC 147 ms
35,928 KB
testcase_32 TLE -
testcase_33 AC 28 ms
35,756 KB
testcase_34 AC 1,894 ms
37,940 KB
testcase_35 AC 620 ms
36,380 KB
testcase_36 AC 18 ms
35,592 KB
testcase_37 AC 18 ms
35,768 KB
testcase_38 AC 19 ms
35,568 KB
testcase_39 AC 17 ms
35,616 KB
testcase_40 AC 18 ms
35,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;
typedef long long ll;

//range chmin range min
ll inf = 1000000000000000000;
struct S{ll x;};
struct F{ll x;};
S op(S l,S r){return S{min(l.x,r.x)};}
S e(){return S{inf};}
S mapping(F l,S r){return S{min(l.x,r.x)};}
F compo(F l,F r){return F{min(l.x,r.x)};}
F id(){return F{inf};}

ll a[300010];
int main(){
    int i,j,n; cin >> n;
    for(i=0;i<n;i++) cin >> a[i];
    const int mx = 1000000;
    vector<S> v(mx + 1);
    for(i=0;i<=mx;i++) v[i] = e(); 
    lazy_segtree<S,op,e,F,mapping,compo,id> seg(v);
    ll ans = 0;
    for(i=0;i<n;i++) ans += a[i];
    seg.set(a[0],S{0});
    for(i=0;i<n;i++){
        // cout << i << endl;
        ll x = a[i];
        ll c = a[i];
        for(j=x;j<=mx;j+=x){
            // cout << j << endl;
            seg.apply(j,min((ll)mx + 1,j + x),F{seg.get(a[i]).x + c});
            c += a[i];
        }
    }
    cout << ans - seg.get(a[n - 1]).x << endl;
}
0