AtCoderのABC    次のABCの問題へ    前のABCの問題へ

ABC127-D Integer Cards


問題へのリンク


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("3 2");
            WillReturn.Add("5 1 4");
            WillReturn.Add("2 3");
            WillReturn.Add("1 5");
            //14
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("10 3");
            WillReturn.Add("1 8 5 7 100 4 52 33 13 5");
            WillReturn.Add("3 10");
            WillReturn.Add("4 30");
            WillReturn.Add("1 4");
            //338
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("3 2");
            WillReturn.Add("100 100 100");
            WillReturn.Add("3 99");
            WillReturn.Add("3 99");
            //300
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("11 3");
            WillReturn.Add("1 1 1 1 1 1 1 1 1 1 1");
            WillReturn.Add("3 1000000000");
            WillReturn.Add("4 1000000000");
            WillReturn.Add("3 1000000000");
            //10000000001
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();

        long[] wkArr = { };
        Action<string> SplitAct = pStr =>
            wkArr = pStr.Split(' ').Select(pX => long.Parse(pX)).ToArray();

        SplitAct(InputList[0]);
        long N = wkArr[0];
        long M = wkArr[1];

        long[] AArr = InputList[1].Split(' ').Select(pX => long.Parse(pX)).ToArray();

        // 個数[値]のDict
        var CntDict = new Dictionary<long, long>();

        foreach (long EachInt in AArr) {
            if (CntDict.ContainsKey(EachInt) == false) {
                CntDict[EachInt] = 0;
            }
            CntDict[EachInt]++;
        }

        foreach (string EachStr in InputList.Skip(2)) {
            SplitAct(EachStr);

            long B = wkArr[0];
            long C = wkArr[1];

            if (CntDict.ContainsKey(C) == false) {
                CntDict[C] = 0;
            }
            CntDict[C] += B;
        }

        long RestCnt = N;
        long Answer = 0;
        foreach (var EachPair in CntDict.OrderByDescending(pX => pX.Key)) {
            if (EachPair.Value < RestCnt) {
                Answer += EachPair.Key * EachPair.Value;
                RestCnt -= EachPair.Value;
            }
            else {
                Answer += EachPair.Key * RestCnt;
                break;
            }
        }
        Console.WriteLine(Answer);
    }
}


解説

考察すると
同じカードの数を2回変更するのは、無駄だと分かります。

なので、全部の数を混ぜて、降順にK件選んだ和が解となります。