結果

問題 No.489 株に挑戦
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-06 15:16:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 883 ms / 1,000 ms
コード長 1,948 bytes
コンパイル時間 3,947 ms
コンパイル使用メモリ 79,320 KB
実行使用メモリ 72,284 KB
最終ジャッジ日時 2024-07-20 00:18:35
合計ジャッジ時間 22,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 767 ms
62,220 KB
testcase_01 AC 596 ms
53,860 KB
testcase_02 AC 164 ms
42,316 KB
testcase_03 AC 160 ms
42,180 KB
testcase_04 AC 133 ms
40,928 KB
testcase_05 AC 166 ms
42,080 KB
testcase_06 AC 177 ms
42,652 KB
testcase_07 AC 172 ms
42,436 KB
testcase_08 AC 164 ms
42,328 KB
testcase_09 AC 172 ms
42,260 KB
testcase_10 AC 169 ms
42,408 KB
testcase_11 AC 172 ms
42,380 KB
testcase_12 AC 173 ms
42,688 KB
testcase_13 AC 174 ms
42,320 KB
testcase_14 AC 173 ms
42,468 KB
testcase_15 AC 278 ms
48,680 KB
testcase_16 AC 841 ms
65,332 KB
testcase_17 AC 340 ms
48,872 KB
testcase_18 AC 615 ms
53,504 KB
testcase_19 AC 602 ms
53,380 KB
testcase_20 AC 872 ms
65,492 KB
testcase_21 AC 440 ms
50,256 KB
testcase_22 AC 315 ms
48,352 KB
testcase_23 AC 611 ms
53,584 KB
testcase_24 AC 883 ms
66,844 KB
testcase_25 AC 141 ms
41,256 KB
testcase_26 AC 764 ms
62,248 KB
testcase_27 AC 835 ms
71,844 KB
testcase_28 AC 164 ms
42,052 KB
testcase_29 AC 135 ms
41,320 KB
testcase_30 AC 824 ms
67,092 KB
testcase_31 AC 802 ms
72,284 KB
testcase_32 AC 629 ms
53,840 KB
testcase_33 AC 852 ms
66,868 KB
testcase_34 AC 849 ms
64,940 KB
testcase_35 AC 579 ms
53,280 KB
testcase_36 AC 360 ms
48,732 KB
testcase_37 AC 630 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static int N;
  static long[][] dat;

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    init(n);
    int d = sc.nextInt();
    long k = sc.nextLong();
    long[] a = new long[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextLong();
      update(i, a[i]);
    }

    long ans = 0;
    int p = 0;
    long m1 = 0;
    long m2 = 0;
    for(int i = 0; i < n - 1; i++) {
      long[] t = query(i + 1, Math.min(i + d + 1, N), 0, 0, N);
      if(ans < k * (t[0] - a[i])) {
        p++;
        ans = k * (t[0] - a[i]);
        m1 = i;
        m2 = t[1];
      }
    }

    if(p == 0) {
      System.out.println(0);
    } else {
      System.out.println(ans);
      System.out.print(m1 + " " + m2);
    }
  }

  public static void init(int n_) {
    int n = 1;
    while(n < n_) {
      n *= 2;
    }
    N = n;
    dat = new long[2 * N - 1][2];
  }

  public static void update(long k, long x) {
    int a = (int)(k + N - 1);
    dat[a][0] = x;
    dat[a][1] = k;
    while(a > 0) {
      a = (a - 1) / 2;
      if(dat[2 * a + 1][0] >= dat[2 * a + 2][0]) {
        dat[a][0] = dat[2 * a + 1][0];
        dat[a][1] = dat[2 * a + 1][1];
      } else {
        dat[a][0] = dat[2 * a + 2][0];
        dat[a][1] = dat[2 * a + 2][1];
      }
    }
  }

  public static long[] query(int a, int b, int k, int l, int r) {
    long[] ret = new long[2];
    if((r <= a) || (l >= b)) {
      ret[0] = 0;
      ret[1] = -1;
      return ret;
    }
    if((a <= l) && (r <= b)) {
      ret[0] = dat[k][0];
      ret[1] = dat[k][1];
      return ret;
    } else {
      long[] vl = query(a, b, 2 * k + 1, l, (l + r) / 2);
      long[] vr = query(a, b, 2 * k + 2, (l + r) / 2, r);
      if(vl[0] >= vr[0]) {
        ret[0] = vl[0];
        ret[1] = vl[1];
      } else {
        ret[0] = vr[0];
        ret[1] = vr[1];
      }
      return ret;
    }
  }
}
0