AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC107-C Candles
C#のソース
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static string InputPattern = "InputX";
static List<string> GetInputList()
{
var WillReturn = new List<string>();
if (InputPattern == "Input1") {
WillReturn.Add("5 3");
WillReturn.Add("-30 -10 10 20 50");
//40
}
else if (InputPattern == "Input2") {
WillReturn.Add("3 2");
WillReturn.Add("10 20 30");
//20
}
else if (InputPattern == "Input3") {
WillReturn.Add("1 1");
WillReturn.Add("0");
//0
}
else if (InputPattern == "Input4") {
WillReturn.Add("8 5");
WillReturn.Add("-9 -7 -4 -3 1 2 3 4");
//10
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
int[] wkArr = InputList[0].Split(' ').Select(pX => int.Parse(pX)).ToArray();
int K = wkArr[1];
int[] XArr = InputList[1].Split(' ').Select(pX => int.Parse(pX)).ToArray();
int UB = XArr.GetUpperBound(0);
int Answer = int.MaxValue;
for (int I = 0; I <= UB; I++) {
int ToInd = I + K - 1;
if (ToInd > UB) break;
int FromVal = XArr[I];
int ToVal = XArr[ToInd];
// 符号が一致している場合
if (Math.Sign(FromVal) == Math.Sign(ToVal)) {
int AnswerKouho = Math.Max(Math.Abs(FromVal), Math.Abs(ToVal));
Answer = Math.Min(Answer, AnswerKouho);
}
else { //符号が不一致の場合
int AnswerKouho1 = Math.Abs(FromVal) * 2 + Math.Abs(ToVal);
int AnswerKouho2 = Math.Abs(ToVal) * 2 + Math.Abs(FromVal);
Answer = Math.Min(Answer, AnswerKouho1);
Answer = Math.Min(Answer, AnswerKouho2);
}
}
Console.WriteLine(Answer);
}
}
解説
連続した区間を選択するのが最適で、
連続した区間を全探索してます。