結果
問題 | No.38 赤青白ブロック |
ユーザー | aketijyuuzou |
提出日時 | 2024-10-10 21:42:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 169 ms / 5,000 ms |
コード長 | 3,608 bytes |
コンパイル時間 | 1,082 ms |
コンパイル使用メモリ | 114,764 KB |
実行使用メモリ | 32,812 KB |
最終ジャッジ日時 | 2024-10-10 21:43:00 |
合計ジャッジ時間 | 3,454 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
28,560 KB |
testcase_01 | AC | 87 ms
28,588 KB |
testcase_02 | AC | 51 ms
26,552 KB |
testcase_03 | AC | 32 ms
26,404 KB |
testcase_04 | AC | 32 ms
26,260 KB |
testcase_05 | AC | 33 ms
28,572 KB |
testcase_06 | AC | 38 ms
32,532 KB |
testcase_07 | AC | 35 ms
28,440 KB |
testcase_08 | AC | 32 ms
28,436 KB |
testcase_09 | AC | 40 ms
32,544 KB |
testcase_10 | AC | 32 ms
28,208 KB |
testcase_11 | AC | 33 ms
26,164 KB |
testcase_12 | AC | 32 ms
28,460 KB |
testcase_13 | AC | 31 ms
24,628 KB |
testcase_14 | AC | 31 ms
26,680 KB |
testcase_15 | AC | 32 ms
28,464 KB |
testcase_16 | AC | 41 ms
32,812 KB |
testcase_17 | AC | 33 ms
28,560 KB |
testcase_18 | AC | 36 ms
30,628 KB |
testcase_19 | AC | 37 ms
32,540 KB |
testcase_20 | AC | 33 ms
28,552 KB |
testcase_21 | AC | 32 ms
26,416 KB |
testcase_22 | AC | 169 ms
30,372 KB |
testcase_23 | AC | 32 ms
26,648 KB |
testcase_24 | AC | 35 ms
28,560 KB |
testcase_25 | AC | 44 ms
28,328 KB |
testcase_26 | AC | 32 ms
24,120 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("1 10"); WillReturn.Add("RRRRRRRRRRWWWWWWWWWWBBBBBBBBBB"); //21 //Rの1個となりがRであってはならないのでRを9個抜く。 //Bの10個となりにBがあることは無いのでBは抜かなくてよい。 //最終的には RWWWWWWWWWWBBBBBBBBBB が残る。 } else if (InputPattern == "Input2") { WillReturn.Add("1 2"); WillReturn.Add("WRWWBBRRRWWBBRRRRWWWBBBRRWWBBB"); //22 } else if (InputPattern == "Input3") { WillReturn.Add("7 11"); WillReturn.Add("BWBWRWRRWBRRWRRWWBBBRRWBBRWBBW"); //27 } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { var sw = System.Diagnostics.Stopwatch.StartNew(); List<string> InputList = GetInputList(); int[] wkArr = InputList[0].Split(' ').Select(X => int.Parse(X)).ToArray(); int Kr = wkArr[0]; int Kb = wkArr[1]; string S = InputList[1]; Console.WriteLine(ExecDFS(S, Kr, Kb)); } struct JyoutaiDef { internal int CurrP; internal string CurrStr; internal int RemoveCnt; } //2の20乗通りの順列を列挙 static int ExecDFS(string pS, int pKr, int pKb) { var stk = new Stack<JyoutaiDef>(); JyoutaiDef WillPush; WillPush.CurrP = 0; WillPush.CurrStr = ""; WillPush.RemoveCnt = 0; stk.Push(WillPush); int AnswerRemoveCnt = int.MaxValue; while (stk.Count > 0) { JyoutaiDef Popped = stk.Pop(); //クリア判定 if (Popped.CurrP > pS.Length - 1) { if (IsOK(Popped.CurrStr, pKr, pKb)) { if (AnswerRemoveCnt > Popped.RemoveCnt) { AnswerRemoveCnt = Popped.RemoveCnt; } } continue; } Action<string> PushSyori = pAddStr => { WillPush.CurrP = Popped.CurrP + 1; WillPush.CurrStr = Popped.CurrStr + pAddStr; WillPush.RemoveCnt = Popped.RemoveCnt; if (pAddStr.Length == 0) WillPush.RemoveCnt++; //下限値枝切り if (AnswerRemoveCnt <= WillPush.RemoveCnt) return; stk.Push(WillPush); }; if (pS[Popped.CurrP] == 'B') { PushSyori("B"); PushSyori(""); } if (pS[Popped.CurrP] == 'R') { PushSyori("R"); PushSyori(""); } if (pS[Popped.CurrP] == 'W') { PushSyori("W"); } } return pS.Length - AnswerRemoveCnt; } //OKなレンガの配置かを判定 static bool IsOK(string pS, int pKr, int pKb) { int UB = pS.Length - 1; for (int I = 0; I <= UB; I++) { if (pS[I] == 'R' && I + pKr <= UB && pS[I + pKr] == 'R') return false; if (pS[I] == 'B' && I + pKb <= UB && pS[I + pKb] == 'B') return false; } return true; } }