結果

問題 No.2488 Mod Sum Maximization
ユーザー pockynypockyny
提出日時 2023-10-29 22:36:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,936 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 1,775 ms
コンパイル使用メモリ 108,048 KB
実行使用メモリ 20,604 KB
最終ジャッジ日時 2024-12-20 20:14:46
合計ジャッジ時間 30,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 946 ms
19,484 KB
testcase_01 AC 324 ms
19,488 KB
testcase_02 AC 11 ms
19,400 KB
testcase_03 AC 1,091 ms
20,436 KB
testcase_04 AC 1,074 ms
20,604 KB
testcase_05 AC 1,137 ms
20,432 KB
testcase_06 AC 1,031 ms
20,352 KB
testcase_07 AC 746 ms
20,084 KB
testcase_08 AC 1,032 ms
20,584 KB
testcase_09 AC 813 ms
20,184 KB
testcase_10 AC 647 ms
19,968 KB
testcase_11 AC 42 ms
19,432 KB
testcase_12 AC 548 ms
20,060 KB
testcase_13 AC 457 ms
19,904 KB
testcase_14 AC 112 ms
19,540 KB
testcase_15 AC 653 ms
19,944 KB
testcase_16 AC 49 ms
19,436 KB
testcase_17 AC 211 ms
19,600 KB
testcase_18 AC 72 ms
19,380 KB
testcase_19 AC 862 ms
20,336 KB
testcase_20 AC 929 ms
20,408 KB
testcase_21 AC 916 ms
20,248 KB
testcase_22 AC 1,010 ms
20,504 KB
testcase_23 AC 1,047 ms
20,536 KB
testcase_24 AC 392 ms
19,860 KB
testcase_25 AC 34 ms
19,436 KB
testcase_26 AC 72 ms
19,532 KB
testcase_27 AC 1,142 ms
19,996 KB
testcase_28 AC 1,233 ms
20,092 KB
testcase_29 AC 891 ms
19,956 KB
testcase_30 AC 725 ms
19,688 KB
testcase_31 AC 124 ms
19,336 KB
testcase_32 AC 1,936 ms
20,400 KB
testcase_33 AC 20 ms
19,452 KB
testcase_34 AC 1,782 ms
20,376 KB
testcase_35 AC 547 ms
19,760 KB
testcase_36 AC 12 ms
19,400 KB
testcase_37 AC 11 ms
19,472 KB
testcase_38 AC 12 ms
19,456 KB
testcase_39 AC 12 ms
19,320 KB
testcase_40 AC 12 ms
19,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

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

using namespace std;
using namespace atcoder;
typedef int ll;

//range chmin range min
ll inf = 1000000000;
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(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    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);
    long long 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