結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
19,472 KB
testcase_01 AC 325 ms
19,428 KB
testcase_02 AC 12 ms
19,368 KB
testcase_03 AC 1,209 ms
20,532 KB
testcase_04 AC 1,214 ms
20,600 KB
testcase_05 AC 1,205 ms
20,596 KB
testcase_06 AC 1,155 ms
20,508 KB
testcase_07 AC 837 ms
20,224 KB
testcase_08 AC 1,196 ms
20,560 KB
testcase_09 AC 913 ms
20,368 KB
testcase_10 AC 690 ms
20,116 KB
testcase_11 AC 46 ms
19,536 KB
testcase_12 AC 633 ms
20,036 KB
testcase_13 AC 521 ms
19,832 KB
testcase_14 AC 139 ms
19,616 KB
testcase_15 AC 741 ms
20,208 KB
testcase_16 AC 53 ms
19,540 KB
testcase_17 AC 243 ms
19,624 KB
testcase_18 AC 79 ms
19,464 KB
testcase_19 AC 977 ms
20,452 KB
testcase_20 AC 1,064 ms
20,436 KB
testcase_21 AC 1,041 ms
20,420 KB
testcase_22 AC 1,160 ms
20,656 KB
testcase_23 AC 1,184 ms
20,504 KB
testcase_24 AC 455 ms
19,920 KB
testcase_25 AC 37 ms
19,372 KB
testcase_26 AC 77 ms
19,560 KB
testcase_27 AC 1,225 ms
19,992 KB
testcase_28 AC 1,347 ms
20,068 KB
testcase_29 AC 1,005 ms
19,976 KB
testcase_30 AC 800 ms
19,828 KB
testcase_31 AC 137 ms
19,476 KB
testcase_32 TLE -
testcase_33 AC 21 ms
19,388 KB
testcase_34 AC 1,809 ms
20,588 KB
testcase_35 AC 597 ms
19,776 KB
testcase_36 AC 13 ms
19,364 KB
testcase_37 AC 13 ms
19,472 KB
testcase_38 AC 13 ms
19,428 KB
testcase_39 AC 12 ms
19,364 KB
testcase_40 AC 13 ms
19,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(){
    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