結果

問題 No.489 株に挑戦
ユーザー tentententen
提出日時 2020-12-24 16:21:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 772 ms / 1,000 ms
コード長 2,213 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 79,904 KB
実行使用メモリ 57,848 KB
最終ジャッジ日時 2024-09-21 16:57:38
合計ジャッジ時間 20,412 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 708 ms
49,600 KB
testcase_01 AC 605 ms
48,972 KB
testcase_02 AC 145 ms
41,784 KB
testcase_03 AC 156 ms
42,392 KB
testcase_04 AC 137 ms
41,436 KB
testcase_05 AC 163 ms
42,284 KB
testcase_06 AC 164 ms
42,528 KB
testcase_07 AC 167 ms
42,540 KB
testcase_08 AC 142 ms
42,028 KB
testcase_09 AC 165 ms
42,492 KB
testcase_10 AC 171 ms
42,088 KB
testcase_11 AC 164 ms
42,704 KB
testcase_12 AC 167 ms
42,568 KB
testcase_13 AC 168 ms
42,520 KB
testcase_14 AC 166 ms
42,412 KB
testcase_15 AC 272 ms
47,768 KB
testcase_16 AC 719 ms
51,976 KB
testcase_17 AC 324 ms
48,104 KB
testcase_18 AC 571 ms
49,180 KB
testcase_19 AC 535 ms
48,876 KB
testcase_20 AC 738 ms
50,112 KB
testcase_21 AC 414 ms
48,664 KB
testcase_22 AC 305 ms
47,776 KB
testcase_23 AC 613 ms
49,212 KB
testcase_24 AC 772 ms
56,428 KB
testcase_25 AC 142 ms
41,264 KB
testcase_26 AC 665 ms
49,764 KB
testcase_27 AC 738 ms
57,848 KB
testcase_28 AC 155 ms
42,176 KB
testcase_29 AC 131 ms
41,264 KB
testcase_30 AC 770 ms
52,492 KB
testcase_31 AC 690 ms
55,128 KB
testcase_32 AC 636 ms
49,600 KB
testcase_33 AC 709 ms
52,372 KB
testcase_34 AC 728 ms
49,720 KB
testcase_35 AC 462 ms
47,488 KB
testcase_36 AC 367 ms
48,808 KB
testcase_37 AC 600 ms
48,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		long k = sc.nextInt();
		int[] arr = new int[n];
		SegmentTree st = new SegmentTree(n);
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		    st.update(i, arr[i]);
		}
		long max = 0;
		int start = 0;
		int end = 0;
		for (int i = 1; i < n; i++) {
		    long tmp = st.query(Math.max(i - d, 0), i);
		    if (max < arr[i] - tmp) {
		        max = arr[i] - tmp;
		        end = i;
		        for (int j = Math.max(i - d, 0); j < i; j++) {
		            if (arr[j] == tmp) {
		                start = j;
		                break;
		            }
		        }
		    }
		    max = Math.max(max, arr[i] - tmp);
		}
		System.out.println(max * k);
		if (max > 0) {
		    System.out.println(start + " " + end);
		}
	}
}

class SegmentTree {
    static final int INF = Integer.MAX_VALUE;
    int size;
    int base;
    int[] tree;
    
    public SegmentTree(int size) {
        this.size = size;
        base = 1;
        while (base < size) {
            base <<= 1;
        }
        tree = new int[base * 2 - 1];
        Arrays.fill(tree, Integer.MAX_VALUE);
    }
    
    public void update(int idx, int value) {
        updateTree(idx + base - 1, value);
    }
    
    private void updateTree(int idx, int value) {
        tree[idx] = value;
        if (idx == 0) {
            return;
        }
        
        if (idx % 2 == 1) {
            updateTree((idx - 1) / 2, Math.min(value, tree[idx + 1]));
        } else {
            updateTree((idx - 1) / 2, Math.min(value, tree[idx - 1]));
        }
    }
    
    public int query(int min, int max) {
        return query(min, max, 0, 0, base);
    }
    
    public int query(int min, int max, int idx, int left, int right) {
        if (min >= right || max < left) {
            return INF;
        }
        if (min <= left && right - 1 <= max) {
            return tree[idx];
        }
        int x1 = query(min, max, 2 * idx + 1, left, (left + right) / 2);
        int x2 = query(min, max, 2 * idx + 2, (left + right) / 2, right);
        return Math.min(x1, x2);
    }
 }
0