結果

問題 No.38 赤青白ブロック
ユーザー not_522not_522
提出日時 2015-07-16 21:42:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 669 ms / 5,000 ms
コード長 768 bytes
コンパイル時間 1,572 ms
コンパイル使用メモリ 170,080 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-06-06 02:06:52
合計ジャッジ時間 9,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
17,280 KB
testcase_01 AC 56 ms
9,600 KB
testcase_02 AC 256 ms
32,256 KB
testcase_03 AC 284 ms
27,392 KB
testcase_04 AC 86 ms
8,832 KB
testcase_05 AC 166 ms
17,280 KB
testcase_06 AC 324 ms
36,352 KB
testcase_07 AC 426 ms
53,888 KB
testcase_08 AC 535 ms
49,280 KB
testcase_09 AC 240 ms
27,136 KB
testcase_10 AC 305 ms
29,440 KB
testcase_11 AC 460 ms
48,000 KB
testcase_12 AC 330 ms
30,464 KB
testcase_13 AC 286 ms
19,712 KB
testcase_14 AC 227 ms
23,168 KB
testcase_15 AC 223 ms
32,640 KB
testcase_16 AC 55 ms
8,960 KB
testcase_17 AC 117 ms
19,200 KB
testcase_18 AC 139 ms
18,688 KB
testcase_19 AC 64 ms
10,368 KB
testcase_20 AC 167 ms
19,840 KB
testcase_21 AC 181 ms
23,808 KB
testcase_22 AC 38 ms
6,656 KB
testcase_23 AC 215 ms
19,712 KB
testcase_24 AC 669 ms
54,656 KB
testcase_25 AC 405 ms
46,592 KB
testcase_26 AC 66 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  int kr, kb;
  string s;
  cin >> kr >> kb >> s;
  set<string> s1{""}, s2;
  for (char c : s) {
    for (auto s : s1) {
      if (c != 'W') s2.insert(s);
      s2.insert(s + c);
    }
    s1 = s2;
    s2.clear();
  }
  int res = 0;
  for (auto s : s1) {
    bool f = true;
    for (int i = 0; i < (int)s.size(); ++i) {
      if (s[i] == 'R') {
        if (0 <= i - kr && s[i - kr] == 'R') f = false;
        if (i + kr < (int)s.size()&& s[i + kr] == 'R') f = false;
      }
      if (s[i] == 'B') {
        if (0 <= i - kb && s[i - kb] == 'B') f = false;
        if (i + kb < (int)s.size()&& s[i + kb] == 'B') f = false;
      }
    }
    if (f) res = max(res, (int)s.size());
  }
  cout << res << endl;
}
0