結果

問題 No.489 株に挑戦
ユーザー momoyuumomoyuu
提出日時 2024-09-30 00:29:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 917 bytes
コンパイル時間 1,433 ms
コンパイル使用メモリ 120,844 KB
実行使用メモリ 8,880 KB
最終ジャッジ日時 2024-09-30 00:29:35
合計ジャッジ時間 3,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
8,324 KB
testcase_01 AC 19 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 32 ms
8,600 KB
testcase_17 AC 5 ms
6,820 KB
testcase_18 AC 18 ms
6,820 KB
testcase_19 AC 16 ms
6,820 KB
testcase_20 AC 34 ms
8,676 KB
testcase_21 AC 10 ms
6,820 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 18 ms
6,820 KB
testcase_24 AC 38 ms
8,880 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 37 ms
8,800 KB
testcase_27 AC 41 ms
8,740 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 42 ms
8,744 KB
testcase_31 AC 38 ms
8,748 KB
testcase_32 AC 21 ms
6,816 KB
testcase_33 AC 38 ms
8,748 KB
testcase_34 AC 34 ms
8,480 KB
testcase_35 AC 15 ms
6,816 KB
testcase_36 AC 6 ms
6,820 KB
testcase_37 AC 21 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/segtree>
pair<ll,ll> op(pair<ll,ll> a,pair<ll,ll> b){
    return max(a,b);
}
pair<ll,ll> e(){
    return make_pair(0,-1);
}
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n,d,k;
    cin>>n>>d>>k;
    atcoder::segtree<pair<ll,ll>,op,e> seg(n);
    vector<ll> x(n);
    for(int i = 0;i<n;i++){
        cin>>x[i];
        seg.set(i,make_pair(x[i],-i));
    }
    ll ans = 0;
    int ni,nj;

    for(int i = 0;i<n;i++){
        int ri = i + d + 1;
        ri = min<int>(ri,n);
        auto now = seg.prod(i,ri);
        ll p = now.first;
        if(p==x[i]) continue;
        ll can = k * (p-x[i]);
        if(can<=ans) continue;
        ans = can;
        ni = i;
        nj = -now.second;
    }
    cout<<ans<<endl;
    if(ans==0) return 0;
    cout<<ni<<" "<<nj<<endl;
}

0