結果

問題 No.489 株に挑戦
ユーザー kusaf_kusaf_
提出日時 2024-07-31 02:41:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 723 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 252,188 KB
実行使用メモリ 8,932 KB
最終ジャッジ日時 2024-07-31 02:41:51
合計ジャッジ時間 5,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,540 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 20 ms
8,660 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 12 ms
6,948 KB
testcase_19 AC 10 ms
6,940 KB
testcase_20 AC 20 ms
8,536 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 10 ms
6,940 KB
testcase_24 AC 22 ms
8,848 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 25 ms
8,932 KB
testcase_27 AC 20 ms
8,840 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 23 ms
8,836 KB
testcase_31 AC 22 ms
8,852 KB
testcase_32 AC 13 ms
6,940 KB
testcase_33 AC 21 ms
8,792 KB
testcase_34 AC 19 ms
8,580 KB
testcase_35 AC 9 ms
6,944 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace std;
using namespace atcoder;
using ll = long long;

using T = pair<ll, ll>;
T op(T l, T r) { return max(l, r); }
T e() { return {0, 0}; }

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, D, K;
  cin >> N >> D >> K;

  vector<pair<ll, ll>> v(N);
  for(ll i = 0; i < N; i++) {
    cin >> v[i].first;
    v[i].second = -i;
  }

  segtree<T, op, e> S(v);
  ll ans = 0, l, r;
  for(ll i = 0; i < N; i++) {
    auto [val, idx] = S.prod(i, min(i + D + 1, N));
    if(val - v[i].first > ans) {
      ans = val - v[i].first;
      tie(l, r) = {i, idx};
    }
  }

  cout << ans * K << "\n";
  if(ans) { cout << l << " " << -r << "\n"; }
}
0