結果

問題 No.489 株に挑戦
ユーザー 37zigen37zigen
提出日時 2017-02-24 23:30:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,220 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 81,612 KB
実行使用メモリ 66,396 KB
最終ジャッジ日時 2024-06-10 23:24:27
合計ジャッジ時間 20,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 141 ms
42,276 KB
testcase_03 AC 134 ms
42,428 KB
testcase_04 AC 117 ms
41,364 KB
testcase_05 AC 141 ms
41,388 KB
testcase_06 AC 150 ms
41,648 KB
testcase_07 AC 147 ms
42,692 KB
testcase_08 AC 136 ms
42,152 KB
testcase_09 AC 157 ms
42,496 KB
testcase_10 AC 145 ms
41,472 KB
testcase_11 AC 179 ms
42,800 KB
testcase_12 AC 148 ms
41,880 KB
testcase_13 AC 162 ms
42,468 KB
testcase_14 AC 142 ms
41,616 KB
testcase_15 AC 282 ms
48,560 KB
testcase_16 AC 820 ms
61,164 KB
testcase_17 AC 309 ms
49,736 KB
testcase_18 AC 483 ms
52,316 KB
testcase_19 AC 448 ms
50,516 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 128 ms
41,988 KB
testcase_26 AC 740 ms
64,432 KB
testcase_27 AC 767 ms
66,396 KB
testcase_28 WA -
testcase_29 AC 98 ms
40,260 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class Q485 {
	static int N, D, 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);
		}
		int 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, price;

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

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

		int n;
		State[] val;
		int 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(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(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