結果

問題 No.489 株に挑戦
ユーザー mbanmban
提出日時 2017-04-29 04:37:44
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,345 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-09-13 19:04:12
合計ジャッジ時間 9,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
20,964 KB
testcase_01 WA -
testcase_02 AC 24 ms
18,048 KB
testcase_03 AC 24 ms
18,048 KB
testcase_04 AC 24 ms
17,920 KB
testcase_05 AC 24 ms
17,664 KB
testcase_06 AC 24 ms
17,920 KB
testcase_07 AC 24 ms
18,048 KB
testcase_08 AC 24 ms
17,792 KB
testcase_09 AC 25 ms
17,792 KB
testcase_10 AC 24 ms
17,920 KB
testcase_11 AC 24 ms
17,792 KB
testcase_12 AC 25 ms
17,920 KB
testcase_13 AC 25 ms
17,920 KB
testcase_14 AC 24 ms
17,920 KB
testcase_15 AC 29 ms
18,048 KB
testcase_16 AC 567 ms
20,748 KB
testcase_17 AC 29 ms
18,304 KB
testcase_18 AC 280 ms
19,436 KB
testcase_19 AC 271 ms
19,056 KB
testcase_20 AC 485 ms
21,320 KB
testcase_21 AC 113 ms
18,560 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 469 ms
21,608 KB
testcase_25 AC 24 ms
17,920 KB
testcase_26 WA -
testcase_27 AC 555 ms
21,012 KB
testcase_28 AC 24 ms
17,664 KB
testcase_29 AC 24 ms
17,792 KB
testcase_30 AC 319 ms
21,736 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 524 ms
21,688 KB
testcase_34 AC 464 ms
21,184 KB
testcase_35 WA -
testcase_36 AC 91 ms
18,432 KB
testcase_37 AC 373 ms
19,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

public class Program
{
    public static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N, D, K;
    private int[] x;

    private void Scan()
    {
        string[] line = Console.ReadLine().Split(' ');
        N = int.Parse(line[0]);
        D = int.Parse(line[1]);
        K = int.Parse(line[2]);

        x = new int[N];
        for (int i = 0; i < N; i++)
        {
            x[i] = int.Parse(Console.ReadLine());
        }
    }

    public void Solve()
    {
        Scan();

        int[] B = new int[(N + 1000 - 1) / 1000];
        int[] index = new int[(N + 1000 - 1) / 1000];
        int maxleft = -1;
        int maxright = -1;

        for (int i = 0; i < N; i++)
        {
            if (B[i / 1000] < x[i])
            {
                B[i / 1000] = x[i];
                index[i / 1000] = i;
            }
            
        }
        int max = 0;
        for (int i = 0; i < N - 1; i++)
        {
            int right = Math.Min(i + D, N - 1);

            int bleft = i / 1000;
            int bright = right / 1000;
            int m = 0;

            int rightindex = -1;
            for (int j = bleft; j < bright; j++)
            {
                if (m < B[j])
                {
                    m = B[j];
                    rightindex = index[j];
                }
            }

            for (int j = i; j <= right && j % 1000 < 999; j++)
            {
                if (m < x[j])
                {
                    m = x[j];
                    rightindex = j;
                }
            }


            for (int j = right; j >= i && j % 1000 < 999; j--)
            {
                if (m < x[j])
                {
                    m = x[j];
                    rightindex = j;
                }
            }
            if (max < m - x[i])
            {
                maxleft = i;
                maxright = rightindex;
                max = m - x[i];
            }

        }

        Console.WriteLine((long)K * max);
        if (max == 0)
        {
            return;
        }
        Console.WriteLine($"{maxleft} {maxright}");
    }
}
0