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

ABC325-B World Meeting


問題へのリンク


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");
            WillReturn.Add("5 0");
            WillReturn.Add("3 3");
            WillReturn.Add("2 18");
            //8
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2");
            WillReturn.Add("1 10");
            WillReturn.Add("1000000 20");
            //1000000
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("6");
            WillReturn.Add("31 3");
            WillReturn.Add("20 8");
            WillReturn.Add("11 5");
            WillReturn.Add("4 3");
            WillReturn.Add("47 14");
            WillReturn.Add("1 18");
            //67
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    struct BaseInfoDef
    {
        internal long ManCnt;
        internal List<long> OkStaList;
    }
    static List<BaseInfoDef> mBaseInfoList = new List<BaseInfoDef>();

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

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

        foreach (string EachStr in InputList.Skip(1)) {
            SplitAct(EachStr);
            BaseInfoDef WillAdd;
            WillAdd.ManCnt = wkArr[0];
            WillAdd.OkStaList = DeriveOkStaList(wkArr[1]);
            mBaseInfoList.Add(WillAdd);
        }

        // 世界標準時間での開始時間を全て試す
        var AnswerKouho = new List<long>();
        for (long I = 0; I <= 23; I++) {
            long CurrKouho = 0;
            foreach (BaseInfoDef EachBaseInfo in mBaseInfoList) {
                if (EachBaseInfo.OkStaList.Contains(I)) {
                    CurrKouho += EachBaseInfo.ManCnt;
                }
            }
            AnswerKouho.Add(CurrKouho);
        }
        Console.WriteLine(AnswerKouho.Max());
    }

    // 時差を引数として、世界標準時間でOKな会議開始時間のListを返す
    static List<long> DeriveOkStaList(long pJisa)
    {
        var WillReturn = new List<long>();
        for (long I = 9; I <= 17; I++) {
            long AddVal = I - pJisa;
            AddVal %= 24;
            if (AddVal < 0) AddVal += 24;
            WillReturn.Add(AddVal);
        }
        return WillReturn;
    }
}


解説

世界標準時間に変換して考えるようにしてます。
世界標準時間で、何時から会議開始であればOKかを
mod 24 を使って、0時から23時の範囲の時間でListに設定してます。