結果

問題 No.489 株に挑戦
ユーザー zimphazimpha
提出日時 2017-03-25 18:58:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,423 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 59,128 KB
最終ジャッジ日時 2024-07-06 06:12:41
合計ジャッジ時間 10,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
58,980 KB
testcase_01 AC 220 ms
58,800 KB
testcase_02 AC 95 ms
52,936 KB
testcase_03 AC 94 ms
52,812 KB
testcase_04 AC 47 ms
50,132 KB
testcase_05 AC 110 ms
53,840 KB
testcase_06 AC 112 ms
54,180 KB
testcase_07 AC 91 ms
52,852 KB
testcase_08 AC 112 ms
54,000 KB
testcase_09 AC 97 ms
53,132 KB
testcase_10 AC 115 ms
54,040 KB
testcase_11 AC 105 ms
53,756 KB
testcase_12 AC 109 ms
53,764 KB
testcase_13 AC 111 ms
54,008 KB
testcase_14 AC 110 ms
54,080 KB
testcase_15 AC 153 ms
54,408 KB
testcase_16 AC 230 ms
58,924 KB
testcase_17 AC 170 ms
55,912 KB
testcase_18 AC 220 ms
58,752 KB
testcase_19 AC 210 ms
58,856 KB
testcase_20 AC 244 ms
58,960 KB
testcase_21 AC 178 ms
56,844 KB
testcase_22 AC 156 ms
53,924 KB
testcase_23 AC 246 ms
59,024 KB
testcase_24 AC 250 ms
58,804 KB
testcase_25 AC 47 ms
50,440 KB
testcase_26 AC 175 ms
55,032 KB
testcase_27 WA -
testcase_28 AC 116 ms
54,028 KB
testcase_29 AC 52 ms
50,476 KB
testcase_30 AC 256 ms
59,008 KB
testcase_31 AC 233 ms
58,792 KB
testcase_32 AC 224 ms
58,848 KB
testcase_33 AC 261 ms
59,128 KB
testcase_34 AC 250 ms
59,036 KB
testcase_35 AC 205 ms
58,168 KB
testcase_36 AC 182 ms
56,556 KB
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Chiaki.Hoshinomori
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task489 solver = new Task489();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task489 {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            int n = in.nextInt();
            int d = in.nextInt();
            int k = in.nextInt();
            int[] x = new int[n];
            for (int i = 0; i < n; i++) {
                x[i] = in.nextInt();
            }
            int[] q = new int[n];
            int h = 0, t = -1;
            int ret = 0, a = 0, b = 0;
            for (int i = 0; i < n; i++) {
                while (h <= t && q[h] < i - d) ++h;
                if (h <= t && x[i] - x[q[h]] > ret) {
                    ret = x[i] - x[q[h]];
                    a = q[h];
                    b = i;
                }
                while (h <= t && x[q[t]] >= x[i]) --t;
                q[++t] = i;
            }
            if (ret == 0) out.println(ret);
            else out.printf("%d\n%d %d\n", (long) k * ret, a, b);
        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

    }
}

0