結果
問題 | No.258 回転寿司(2) |
ユーザー | 明智重蔵 |
提出日時 | 2016-06-18 17:45:03 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,018 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 114,528 KB |
実行使用メモリ | 83,556 KB |
最終ジャッジ日時 | 2024-11-24 17:03:32 |
合計ジャッジ時間 | 73,754 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 1,123 ms
52,452 KB |
testcase_03 | AC | 35 ms
78,272 KB |
testcase_04 | AC | 709 ms
45,136 KB |
testcase_05 | AC | 368 ms
83,556 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 132 ms
37,080 KB |
testcase_08 | AC | 480 ms
47,956 KB |
testcase_09 | AC | 127 ms
76,824 KB |
testcase_10 | AC | 41 ms
38,652 KB |
testcase_11 | AC | 192 ms
82,100 KB |
testcase_12 | AC | 367 ms
40,648 KB |
testcase_13 | AC | 87 ms
76,540 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 158 ms
81,468 KB |
testcase_16 | AC | 143 ms
39,012 KB |
testcase_17 | AC | 171 ms
34,724 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 33 ms
25,684 KB |
testcase_20 | AC | 1,447 ms
48,544 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 32 ms
25,680 KB |
testcase_23 | AC | 32 ms
25,672 KB |
testcase_24 | AC | 32 ms
25,428 KB |
testcase_25 | AC | 30 ms
25,808 KB |
testcase_26 | AC | 690 ms
45,500 KB |
testcase_27 | AC | 134 ms
32,548 KB |
testcase_28 | TLE | - |
testcase_29 | AC | 290 ms
32,168 KB |
testcase_30 | AC | 42 ms
32,096 KB |
testcase_31 | AC | 40 ms
29,536 KB |
testcase_32 | AC | 137 ms
30,384 KB |
testcase_33 | AC | 1,824 ms
48,752 KB |
testcase_34 | AC | 733 ms
47,260 KB |
testcase_35 | AC | 617 ms
43,816 KB |
testcase_36 | AC | 52 ms
29,864 KB |
testcase_37 | AC | 41 ms
29,788 KB |
testcase_38 | AC | 304 ms
34,336 KB |
testcase_39 | AC | 163 ms
32,676 KB |
testcase_40 | AC | 889 ms
45,228 KB |
testcase_41 | TLE | - |
testcase_42 | AC | 180 ms
28,840 KB |
testcase_43 | AC | 75 ms
32,420 KB |
testcase_44 | TLE | - |
testcase_45 | AC | 1,482 ms
48,444 KB |
testcase_46 | AC | 34 ms
25,684 KB |
testcase_47 | AC | 1,743 ms
46,608 KB |
testcase_48 | AC | 60 ms
32,288 KB |
testcase_49 | AC | 114 ms
32,128 KB |
testcase_50 | AC | 34 ms
27,720 KB |
testcase_51 | AC | 660 ms
47,532 KB |
testcase_52 | AC | 926 ms
45,104 KB |
testcase_53 | AC | 52 ms
30,124 KB |
testcase_54 | AC | 1,343 ms
46,000 KB |
testcase_55 | TLE | - |
testcase_56 | AC | 901 ms
46,304 KB |
testcase_57 | AC | 53 ms
32,544 KB |
testcase_58 | AC | 483 ms
39,208 KB |
testcase_59 | TLE | - |
testcase_60 | AC | 33 ms
27,592 KB |
testcase_61 | AC | 1,379 ms
46,248 KB |
testcase_62 | AC | 167 ms
28,464 KB |
testcase_63 | AC | 930 ms
45,608 KB |
testcase_64 | TLE | - |
testcase_65 | AC | 1,139 ms
46,580 KB |
testcase_66 | AC | 31 ms
27,720 KB |
testcase_67 | TLE | - |
testcase_68 | TLE | - |
testcase_69 | AC | 1,679 ms
44,376 KB |
testcase_70 | AC | 114 ms
77,168 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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); } } var sb = new System.Text.StringBuilder(); sb.Append(AnswerSum); sb.AppendLine(); for (int I = 0; I <= AnswerSelectSushiList.Count - 1; I++) { sb.Append(AnswerSelectSushiList[I]); if (I < AnswerSelectSushiList.Count - 1) sb.Append(" "); } Console.WriteLine(sb.ToString()); } }