結果

問題 No.38 赤青白ブロック
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-05-25 03:45:52
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 518 ms / 5,000 ms
コード長 1,975 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 106,388 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-04 01:24:41
合計ジャッジ時間 10,372 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
4,380 KB
testcase_01 AC 306 ms
4,376 KB
testcase_02 AC 205 ms
4,380 KB
testcase_03 AC 392 ms
4,376 KB
testcase_04 AC 518 ms
4,380 KB
testcase_05 AC 328 ms
4,376 KB
testcase_06 AC 204 ms
4,380 KB
testcase_07 AC 226 ms
4,380 KB
testcase_08 AC 202 ms
4,376 KB
testcase_09 AC 213 ms
4,376 KB
testcase_10 AC 305 ms
4,380 KB
testcase_11 AC 292 ms
4,380 KB
testcase_12 AC 364 ms
4,376 KB
testcase_13 AC 477 ms
4,380 KB
testcase_14 AC 293 ms
4,380 KB
testcase_15 AC 234 ms
4,376 KB
testcase_16 AC 242 ms
4,380 KB
testcase_17 AC 252 ms
4,376 KB
testcase_18 AC 257 ms
4,376 KB
testcase_19 AC 297 ms
4,376 KB
testcase_20 AC 325 ms
4,376 KB
testcase_21 AC 231 ms
4,376 KB
testcase_22 AC 280 ms
4,380 KB
testcase_23 AC 411 ms
4,376 KB
testcase_24 AC 330 ms
4,380 KB
testcase_25 AC 267 ms
4,376 KB
testcase_26 AC 216 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.complex, std.container, std.math, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum N = 30;

int R, B;
string S;

int ans;

void dfs(int pos, string s) {
  if (pos == N) {
    const len = cast(int)(s.length);
    bool ok = true;
    foreach (i; 0 .. len) {
      if (s[i] == 'R') {
        if (i - R >= 0) ok = ok && (s[i - R] != 'R');
        if (i + R < len) ok = ok && (s[i + R] != 'R');
      } else if (s[i] == 'B') {
        if (i - B >= 0) ok = ok && (s[i - B] != 'B');
        if (i + B < len) ok = ok && (s[i + B] != 'B');
      }
    }
    if (ok) {
      chmax(ans, len);
    }
  } else {
    if (S[pos] == 'R' || S[pos] == 'B') {
      dfs(pos + 1, s);
    }
    dfs(pos + 1, s ~ S[pos]);
  }
}

void main() {
  try {
    for (; ; ) {
      R = readInt();
      B = readInt();
      S = readToken();
      
      ans = 0;
      dfs(0, "");
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0