AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC053-D Card Eater
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");
WillReturn.Add("1 2 1 3 7");
//3
}
else if (InputPattern == "Input2") {
WillReturn.Add("15");
WillReturn.Add("1 3 5 2 1 3 2 8 8 6 2 6 11 1 1");
//7
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
int[] AArr = InputList[1].Split(' ').Select(pX => int.Parse(pX)).ToArray();
var CntDict = new Dictionary<int, int>();
foreach (var EachItem in AArr.GroupBy(pX => pX)) {
CntDict[EachItem.Key] = EachItem.Count();
}
// 件数が偶数のものをカウント
int EvenCnt = CntDict.Values.Count(pX => pX % 2 == 0);
if (EvenCnt % 2 == 0) {
Console.WriteLine(CntDict.Count);
}
else {
Console.WriteLine(CntDict.Count - 1);
}
}
}
解説
数値ごとにGroupByして件数を求めます。
(偶数枚なら、中央値以外を消すことで2枚にできて、
奇数枚なら、中央値以外を消すことで1枚にできます)
偶数枚の数値が、偶数なら、解は、最初のDistinctした件数になります。
偶数枚の数値が、奇数なら、解は、最初のDistinctした件数 - 1 になります。