結果

問題 No.258 回転寿司(2)
ユーザー 明智重蔵明智重蔵
提出日時 2016-06-18 17:41:10
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 4,866 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 109,056 KB
実行使用メモリ 64,820 KB
最終ジャッジ日時 2024-11-24 17:02:14
合計ジャッジ時間 73,896 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1,096 ms
44,672 KB
testcase_03 AC 33 ms
60,532 KB
testcase_04 AC 684 ms
47,056 KB
testcase_05 AC 356 ms
33,792 KB
testcase_06 TLE -
testcase_07 AC 129 ms
39,148 KB
testcase_08 AC 460 ms
37,760 KB
testcase_09 AC 128 ms
64,820 KB
testcase_10 AC 40 ms
36,496 KB
testcase_11 AC 183 ms
29,824 KB
testcase_12 AC 354 ms
32,640 KB
testcase_13 AC 91 ms
32,312 KB
testcase_14 TLE -
testcase_15 AC 150 ms
32,684 KB
testcase_16 AC 138 ms
29,436 KB
testcase_17 AC 168 ms
30,260 KB
testcase_18 TLE -
testcase_19 AC 33 ms
25,592 KB
testcase_20 AC 1,390 ms
45,436 KB
testcase_21 TLE -
testcase_22 AC 34 ms
24,704 KB
testcase_23 AC 33 ms
19,456 KB
testcase_24 AC 33 ms
19,328 KB
testcase_25 AC 35 ms
19,328 KB
testcase_26 AC 677 ms
39,424 KB
testcase_27 AC 131 ms
24,080 KB
testcase_28 TLE -
testcase_29 AC 301 ms
25,856 KB
testcase_30 AC 43 ms
23,424 KB
testcase_31 AC 38 ms
23,552 KB
testcase_32 AC 134 ms
23,936 KB
testcase_33 AC 1,719 ms
46,684 KB
testcase_34 AC 714 ms
39,040 KB
testcase_35 AC 599 ms
35,456 KB
testcase_36 AC 52 ms
23,936 KB
testcase_37 AC 39 ms
23,424 KB
testcase_38 AC 295 ms
26,112 KB
testcase_39 AC 157 ms
24,448 KB
testcase_40 AC 851 ms
39,168 KB
testcase_41 TLE -
testcase_42 AC 174 ms
24,448 KB
testcase_43 AC 70 ms
23,552 KB
testcase_44 TLE -
testcase_45 AC 1,371 ms
40,272 KB
testcase_46 AC 34 ms
19,456 KB
testcase_47 AC 1,662 ms
40,340 KB
testcase_48 AC 57 ms
23,936 KB
testcase_49 AC 104 ms
23,992 KB
testcase_50 AC 33 ms
19,456 KB
testcase_51 AC 625 ms
39,296 KB
testcase_52 AC 890 ms
39,168 KB
testcase_53 AC 50 ms
23,936 KB
testcase_54 AC 1,312 ms
39,972 KB
testcase_55 TLE -
testcase_56 AC 870 ms
40,304 KB
testcase_57 AC 51 ms
23,552 KB
testcase_58 AC 446 ms
33,024 KB
testcase_59 TLE -
testcase_60 AC 37 ms
22,144 KB
testcase_61 AC 1,335 ms
40,228 KB
testcase_62 AC 157 ms
24,192 KB
testcase_63 AC 1,058 ms
39,296 KB
testcase_64 TLE -
testcase_65 AC 1,145 ms
40,176 KB
testcase_66 AC 32 ms
19,584 KB
testcase_67 TLE -
testcase_68 TLE -
testcase_69 AC 1,689 ms
46,304 KB
testcase_70 AC 113 ms
39,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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("4");
            WillReturn.Add("1 2 3 4");
            //6
            //2 4
            //お寿司の取り方は、
            //「1個目と3個目」のお寿司を取る、
            //「1個目と4個目」のお寿司を取る、
            //または「2個目と4個目」のお寿司を取る方法があるが、
            //2個目、4個目のお寿司を取ることで、最大の美味しさが得られる。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("4");
            WillReturn.Add("5 4 4 9");
            //14
            //1 4
            //1個目のお寿司と4個目のお寿司を取ることで
            //最大の美味しさの合計が得られる。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("7");
            WillReturn.Add("1 2 9 10 1 1 4");
            //16
            //2 4 7
            //2,10,4と取れば最大の16が得られる。
            //10の後の6番目の1をあえてスルーしないといけない。
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("1");
            WillReturn.Add("100");
            //100
            //1
            //1皿しかない場合もあります。
        }
        else if (InputPattern == "Input5") {
            WillReturn.Add("275");
            WillReturn.Add("40 84 19 1 55 8 8 67 54 96 21 82 83 33 74 15 11 72 13 75 28 11 42 81 32 11 47 29 47 61 60 35 31 13 75 38 90 99 26 90 39 63 96 13 58 84 67 82 89 78 78 39 20 99 100 18 5 36 69 38 29 82 89 35 57 18 86 40 30 51 36 47 45 43 40 55 73 37 20 86 29 25 49 76 66 18 71 54 58 87 2 62 69 97 71 39 88 72 17 86 68 48 26 40 89 8 53 49 51 18 61 53 45 67 49 85 52 67 71 99 26 91 34 69 35 34 58 24 64 55 72 51 69 82 29 65 78 28 43 19 74 79 50 49 62 1 75 41 50 20 38 17 35 13 18 26 69 36 16 58 37 54 50 27 94 32 62 94 62 41 84 79 35 48 13 58 96 44 31 44 88 76 77 57 65 23 40 64 49 32 2 42 2 8 90 100 28 16 91 52 57 68 64 96 45 35 52 80 47 72 66 61 69 86 23 45 35 44 73 45 71 14 26 19 5 10 1 15 37 98 18 8 2 38 82 58 52 3 100 34 32 29 96 46 14 29 88 36 59 64 3 74 51 5 66 23 68 5 65 71 45 3 93 66 69 70 81 56 14 75 16 82 5 82 38");
            //7946
            //2 5 8 10 13 15 18 20 22 24 27 29 31 33 35 38 40 43 45 47 49 51 53 55 57 59 61 63 65 67 70 72 74 76 78 80 83 85 87 90 92 94 96 98 100 102 105 107 109 111 114 116 118 120 122 124 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 160 162 165 168 170 172 174 177 179 181 183 185 188 190 192 195 197 199 202 204 206 208 210 212 214 216 219 221 223 226 228 230 232 235 237 239 241 243 245 247 250 252 255 257 259 261 263 265 267 270 272 274
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    struct JyoutaiDef
    {
        internal int CurrP;
        internal int SumVal;
        internal List<int> SelectSushiList;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] VArr = InputList[1].Split(' ').Select(X => int.Parse(X)).ToArray();
        int UB = VArr.GetUpperBound(0);

        var stk = new Stack<JyoutaiDef>();
        JyoutaiDef WillPush;
        WillPush.CurrP = 0;
        WillPush.SumVal = 0;
        WillPush.SelectSushiList = new List<int>();
        stk.Push(WillPush);

        int AnswerSum = 0;
        var AnswerSelectSushiList = new List<int>();

        //メモ化探索用
        var MemoDict = new Dictionary<int, int>();

        while (stk.Count > 0) {
            JyoutaiDef Popped = stk.Pop();
            if (AnswerSum < Popped.SumVal) {
                AnswerSum = Popped.SumVal;
                AnswerSelectSushiList = Popped.SelectSushiList;
            }

            for (int I = Popped.CurrP; I <= UB && I <= Popped.CurrP + 1; I++) {
                WillPush.CurrP = I + 2;
                WillPush.SumVal = Popped.SumVal + VArr[I];
                WillPush.SelectSushiList = new List<int>(Popped.SelectSushiList) { I + 1 };

                if (MemoDict.ContainsKey(WillPush.CurrP)) {
                    if (MemoDict[WillPush.CurrP] >= WillPush.SumVal)
                        continue;
                }
                MemoDict[WillPush.CurrP] = WillPush.SumVal;

                stk.Push(WillPush);
            }
        }
        Console.WriteLine(AnswerSum);
        IEnumerable<string> wkEnum = AnswerSelectSushiList.Select(X => X.ToString());
        Console.WriteLine(wkEnum.Aggregate((A, B) => A + " " + B));
    }
}
0