結果
問題 | No.38 赤青白ブロック |
ユーザー | nuwasogi |
提出日時 | 2015-11-30 19:03:36 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 699 ms / 5,000 ms |
コード長 | 4,843 bytes |
コンパイル時間 | 1,431 ms |
コンパイル使用メモリ | 116,860 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-12-23 12:54:12 |
合計ジャッジ時間 | 8,129 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
18,816 KB |
testcase_01 | AC | 368 ms
18,816 KB |
testcase_02 | AC | 134 ms
19,072 KB |
testcase_03 | AC | 100 ms
19,072 KB |
testcase_04 | AC | 228 ms
18,816 KB |
testcase_05 | AC | 26 ms
19,072 KB |
testcase_06 | AC | 437 ms
18,944 KB |
testcase_07 | AC | 211 ms
18,816 KB |
testcase_08 | AC | 26 ms
19,072 KB |
testcase_09 | AC | 446 ms
18,944 KB |
testcase_10 | AC | 25 ms
19,072 KB |
testcase_11 | AC | 25 ms
18,944 KB |
testcase_12 | AC | 24 ms
18,944 KB |
testcase_13 | AC | 25 ms
18,944 KB |
testcase_14 | AC | 24 ms
19,072 KB |
testcase_15 | AC | 148 ms
19,072 KB |
testcase_16 | AC | 314 ms
19,072 KB |
testcase_17 | AC | 299 ms
18,944 KB |
testcase_18 | AC | 67 ms
18,944 KB |
testcase_19 | AC | 186 ms
18,944 KB |
testcase_20 | AC | 234 ms
19,072 KB |
testcase_21 | AC | 228 ms
19,072 KB |
testcase_22 | AC | 699 ms
19,072 KB |
testcase_23 | AC | 30 ms
19,072 KB |
testcase_24 | AC | 402 ms
18,944 KB |
testcase_25 | AC | 81 ms
18,944 KB |
testcase_26 | AC | 107 ms
19,072 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; namespace RBW_Block_CS { class Program { static void Main(string[] args) { Solver sol = new Solver(); sol.Solve(); } } class Solver { Blocks block; int ans = 10; public void Solve() { set(0); Console.WriteLine(ans); } public Solver() { int[] krb = ria(); string S = rs(); block = new Blocks(krb[0], krb[1], S); } /* blockからindex i(target<=i)を取り除いてできる(条件を満たす)ブロック列のうち、最も長いもののLengthをansに格納する. */ void set(int target) { if (block.isSatisfied) { ans = Math.Max(ans, block.Length); return; } else if (target == block.Length) { return; } for (int i = target; i < block.Length; i++) { if (block[i] == Blocks.Color.Blue || block[i] == Blocks.Color.Red) { /* データを更新 */ Blocks.Color mycb = block.Remove(i); set(i); /* 元に戻す */ block.Insert(i, mycb); } } } static String rs() { return Console.ReadLine(); } static int ri() { return int.Parse(Console.ReadLine()); } static long rl() { return long.Parse(Console.ReadLine()); } static double rd() { return double.Parse(Console.ReadLine()); } static String[] rsa() { return Console.ReadLine().Split(' '); } static int[] ria() { return Console.ReadLine().Split(' ').Select(e => int.Parse(e)).ToArray(); } static long[] rla() { return Console.ReadLine().Split(' ').Select(e => long.Parse(e)).ToArray(); } static double[] rda() { return Console.ReadLine().Split(' ').Select(e => double.Parse(e)).ToArray(); } } class Blocks { public enum Color : byte { None = 0x00, Red = 0x01, Blue = 0x02, White = 0x04 }; public Color this[int index] { get { if (index < 0 || _blockColumn.Count() <= index) return Color.None; else return _blockColumn[index]; } } public int Length { get { return _blockColumn.Count(); } } /* すべてのブロックが条件を満たしていればtrueを返す */ public bool isSatisfied { get { for (int i = 0; i < this.Length; i++) { if (!isSatisfy(i)) return false; } return true; } } List<Color> _blockColumn; static int Kr, Kb; public Blocks(int kr, int kb, string s) { Kr = kr; Kb = kb; Func<char, Color> recCol = c => { switch (c) { case 'R': return Color.Red; case 'B': return Color.Blue; case 'W': return Color.White; default: throw new Exception("Color Error"); } }; _blockColumn = new List<Color>(30); for (int i = 0; i < s.Length; i++) { _blockColumn.Add(recCol(s[i])); } } public Blocks(Blocks B) { for (int i = 0; i < B.Length; i++) { _blockColumn.Add(B[i]); } } /* index iのブロックが条件を満たしていればtrueを返す */ public bool isSatisfy(int i) { switch (_blockColumn[i]) { case Color.Red: return (((this[i - Kr] | this[i + Kr]) & Color.Red) != Color.Red); case Color.Blue: return (((this[i - Kb] | this[i + Kb]) & Color.Blue) != Color.Blue); case Color.White: return true; default: return false; } } /* index iのブロックを取り除く.取り除いたブロックの色を返す */ public Color Remove(int i) { Color c = _blockColumn[i]; _blockColumn.RemoveAt(i); return c; } public void Insert(int i, Color c) { _blockColumn.Insert(i, c); } } }