典型90問    次の典型90問へ    前の典型90問へ

典型90問 014 We Used to Sing a Song Together(★3)


問題へのリンク


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("1");
            WillReturn.Add("869");
            WillReturn.Add("120");
            //749
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("6");
            WillReturn.Add("8 6 9 1 2 0");
            WillReturn.Add("1 5 7 2 3 9");
            //5
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("10");
            WillReturn.Add("31 41 59 26 53 58 97 93 23 84");
            WillReturn.Add("17 32 5 8 7 56 88 77 29 35");
            //211
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("20");
            WillReturn.Add("804289382 846930886 681692776 714636914 957747792 424238335 719885386 649760491 596516649 189641420 25202361 350490026 783368690 102520058 44897761 967513925 365180539 540383425 304089172 303455735");
            WillReturn.Add("35005211 521595368 294702567 726956428 336465782 861021530 278722862 233665123 145174065 468703135 101513928 801979801 315634021 635723058 369133068 125898166 59961392 89018454 628175011 656478041");
            //2736647674
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        long[] AArr = InputList[1].Split(' ').Select(pX => long.Parse(pX)).ToArray();
        long[] BArr = InputList[2].Split(' ').Select(pX => long.Parse(pX)).ToArray();

        Array.Sort(AArr);
        Array.Sort(BArr);

        long Answer = 0;
        for (long I = 0; I <= AArr.GetUpperBound(0); I++) {
            Answer += Math.Abs(AArr[I] - BArr[I]);
        }
        Console.WriteLine(Answer);
    }
}


解説

二つの数列を昇順にソートしてから
順に対応させると解になります。