AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC103-D Islands War
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 2");
WillReturn.Add("1 4");
WillReturn.Add("2 5");
//1
}
else if (InputPattern == "Input2") {
WillReturn.Add("9 5");
WillReturn.Add("1 8");
WillReturn.Add("2 7");
WillReturn.Add("3 5");
WillReturn.Add("4 6");
WillReturn.Add("7 9");
//2
}
else if (InputPattern == "Input3") {
WillReturn.Add("5 10");
WillReturn.Add("1 2");
WillReturn.Add("1 3");
WillReturn.Add("1 4");
WillReturn.Add("1 5");
WillReturn.Add("2 3");
WillReturn.Add("2 4");
WillReturn.Add("2 5");
WillReturn.Add("3 4");
WillReturn.Add("3 5");
WillReturn.Add("4 5");
//4
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
struct ABInfoDef
{
internal int a;
internal int b;
}
static void Main()
{
List<string> InputList = GetInputList();
int[] wkArr = { };
Action<string> SplitAct = pStr =>
wkArr = pStr.Split(' ').Select(pX => int.Parse(pX)).ToArray();
var ABInfoList = new List<ABInfoDef>();
foreach (string EachStr in InputList.Skip(1)) {
SplitAct(EachStr);
ABInfoDef WillAdd;
WillAdd.a = wkArr[0];
WillAdd.b = wkArr[1];
ABInfoList.Add(WillAdd);
}
// 切断した橋のList
var BridgePosList = new LinkedList<int>();
// 右端の昇順でソートする
var Query = ABInfoList.OrderBy(pX => pX.b);
foreach (ABInfoDef EachABInfo in Query) {
// 格子点の間の四角マスで考えるので、終了だけ1引く
int StaPos = EachABInfo.a;
int EndPos = EachABInfo.b - 1;
if (BridgePosList.Count > 0) {
int MaxBridgePos = BridgePosList.Last.Value;
if (StaPos <= MaxBridgePos && MaxBridgePos <= EndPos) {
continue;
}
}
BridgePosList.AddLast(EndPos);
}
Console.WriteLine(BridgePosList.Count);
}
}
解説
区間スケジューリング問題に帰着させてます。
類題