結果
問題 | No.489 株に挑戦 |
ユーザー | mban |
提出日時 | 2017-05-09 21:14:21 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,252 bytes |
コンパイル時間 | 951 ms |
コンパイル使用メモリ | 106,368 KB |
実行使用メモリ | 26,068 KB |
最終ジャッジ日時 | 2024-09-14 20:06:37 |
合計ジャッジ時間 | 4,249 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 291 ms
26,068 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; class Program { static void Main(string[] args) { new Magatro().Solve(); } } public class Magatro { private int N, D, K; private int[] X; private int[] Table; private int[] Index; private int T = 1000; 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]; T = (int)Math.Sqrt(N); Table = new int[(N + T - 1) / T]; Index = new int[(N + T - 1) / T]; for (int i = 0; i < N; i++) { X[i] = int.Parse(Console.ReadLine()); if (Table[i / T] < X[i]) { Table[i / T] = X[i]; Index[i / T] = i; } } } public void Solve() { Scan(); int ans = 0; int ansL = -1, ansR = -1; for (int i = 0; i < N - 1; i++) { int right = Math.Min(i + D, N - 1); int max = 0; int r = -1; for (int j = i + 1; j <= right && j % T <= T - 1; j++) { if (max < X[j]) { max = X[j]; r = j; } } for (int j = i / T + 1; j < right / T; j++) { if (max < Table[j]) { max = Table[j]; r = Index[j]; } } for (int j = right; j >= i && j % T != T - 1; j--) { if (max <= X[j]) { max = X[j]; r = j; } } if (ans < max - X[i]) { ans = max - X[i]; ansL = i; ansR = r; } } Console.WriteLine((long)ans * K); if(ans == 0) { return; } Console.WriteLine($"{ansL} {ansR}"); } }