結果

問題 No.489 株に挑戦
ユーザー 37zigen37zigen
提出日時 2017-02-24 23:37:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 969 ms / 1,000 ms
コード長 2,250 bytes
コンパイル時間 4,893 ms
コンパイル使用メモリ 83,252 KB
実行使用メモリ 64,692 KB
最終ジャッジ日時 2024-07-19 23:08:40
合計ジャッジ時間 25,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 830 ms
53,896 KB
testcase_01 AC 570 ms
51,988 KB
testcase_02 AC 159 ms
42,344 KB
testcase_03 AC 159 ms
42,216 KB
testcase_04 AC 133 ms
41,224 KB
testcase_05 AC 167 ms
42,504 KB
testcase_06 AC 170 ms
42,828 KB
testcase_07 AC 178 ms
42,540 KB
testcase_08 AC 160 ms
42,488 KB
testcase_09 AC 170 ms
42,704 KB
testcase_10 AC 180 ms
42,804 KB
testcase_11 AC 173 ms
42,488 KB
testcase_12 AC 173 ms
42,784 KB
testcase_13 AC 170 ms
42,888 KB
testcase_14 AC 171 ms
42,444 KB
testcase_15 AC 284 ms
48,592 KB
testcase_16 AC 824 ms
58,940 KB
testcase_17 AC 360 ms
49,036 KB
testcase_18 AC 639 ms
51,916 KB
testcase_19 AC 603 ms
51,216 KB
testcase_20 AC 840 ms
57,808 KB
testcase_21 AC 479 ms
49,936 KB
testcase_22 AC 321 ms
48,784 KB
testcase_23 AC 698 ms
52,484 KB
testcase_24 AC 908 ms
59,640 KB
testcase_25 AC 144 ms
41,412 KB
testcase_26 AC 774 ms
57,060 KB
testcase_27 AC 928 ms
64,692 KB
testcase_28 AC 161 ms
42,408 KB
testcase_29 AC 134 ms
41,268 KB
testcase_30 AC 883 ms
60,060 KB
testcase_31 AC 843 ms
64,436 KB
testcase_32 AC 711 ms
52,416 KB
testcase_33 AC 969 ms
61,268 KB
testcase_34 AC 894 ms
58,784 KB
testcase_35 AC 624 ms
51,276 KB
testcase_36 AC 377 ms
49,172 KB
testcase_37 AC 690 ms
52,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Q485 {
	static int N, D;
	static long K;
	static int[] x;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		D = sc.nextInt();
		K = sc.nextInt();
		x = new int[N];
		for (int i = 0; i < N; ++i) {
			x[i] = sc.nextInt();
		}
		RMQ rmq = new RMQ(N);
		for (int i = 0; i < N; ++i) {
			rmq.setVal(i, x[i], i);
		}
		long maxProfit = 0;
		int srcDay = -1, dstDay = -1;
		for (int i = 0; i < N - 1; ++i) {
			RMQ.State s = rmq.query(i + 1, i + 1 + D, 0, rmq.n, 0);
			if (maxProfit < (s.price - x[i]) * K) {
				maxProfit = (s.price - x[i]) * K;
				srcDay = i;
				dstDay = s.day;
			}
		}
		if (maxProfit == 0) {
			System.out.println(0);
		} else {
			System.out.println(maxProfit);
			System.out.println(srcDay + " " + dstDay);
		}
	}

	static class RMQ {
		class State implements Comparable<State> {
			int day;
			long price;

			public State(int day, long price) {
				this.day = day;
				this.price = price;
			}

			@Override
			public int compareTo(State o) {
				if (price != o.price) {
					return -Long.compare(price, o.price);
				} else {
					return Long.compare(day, o.day);
				}
			}
		}

		int n;
		State[] val;
		long INF = Integer.MAX_VALUE / 10;

		public RMQ(int n_) {
			n = 1;
			while (n < n_)
				n *= 2;
			val = new State[2 * n - 1];
			Arrays.fill(val, new State((int) INF, -INF));
		}

		void setVal(int k, int price, int day) {
			k += n - 1;
			val[k] = new State(day, price);
			while (k > 0) {
				k = (k - 1) / 2;
				val[k] = max(val[2 * k + 1], val[2 * k + 2]);
			}
		}

		State query(int a, int b, int l, int r, int k) {
			if (b <= l || a >= r)
				return new State((int) INF, -INF);
			if (a <= l && r <= b)
				return val[k];
			else {
				State vl = query(a, b, l, (l + r) / 2, 2 * k + 1);
				State vr = query(a, b, (l + r) / 2, r, 2 * k + 2);
				return max(vl, vr);
			}
		}

		State max(State s1, State s2) {
			if (s1.compareTo(s2) < 0) {
				return new State(s1.day, s1.price);
			} else {
				return new State(s2.day, s2.price);
			}
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0