結果

問題 No.38 赤青白ブロック
ユーザー maninimanini
提出日時 2021-02-12 15:52:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 1,669 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-19 08:59:07
合計ジャッジ時間 2,495 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,496 KB
testcase_01 AC 127 ms
76,032 KB
testcase_02 AC 55 ms
68,864 KB
testcase_03 AC 41 ms
59,008 KB
testcase_04 AC 34 ms
52,608 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 67 ms
76,016 KB
testcase_07 AC 54 ms
67,456 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 62 ms
74,112 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 33 ms
51,840 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 40 ms
61,312 KB
testcase_16 AC 65 ms
75,752 KB
testcase_17 AC 37 ms
59,392 KB
testcase_18 AC 57 ms
69,760 KB
testcase_19 AC 50 ms
66,560 KB
testcase_20 AC 45 ms
63,104 KB
testcase_21 AC 39 ms
59,264 KB
testcase_22 AC 181 ms
75,844 KB
testcase_23 AC 34 ms
52,224 KB
testcase_24 AC 55 ms
69,504 KB
testcase_25 AC 41 ms
59,264 KB
testcase_26 AC 43 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys
from itertools import combinations

MOD = 10 ** 9 + 7
INF = float('inf')

# 前処理なし
def comb(n, k):
    if n < k:
        return 0
    elif n < 0 or k < 0:
        return 0
    a = 1
    for i in range(k):
        a = a * (n - i)
    b = 1
    for i in range(1, k+1):
        b = b * i
    return a // b

Kr, Kb = list(map(int, input().split()))     # スペース区切り連続数字
S = input()     # 文字列

BRs = []
for i in range(30):
    if S[i] != "W":
        BRs.append(i)

for i in range(21):
    possible_i = False
    Nt = 30 - i

    for r in combinations(BRs, i):
        nums = set(r)
        Stmp = []
        for j in range(30):
            if j not in nums:
                Stmp.append(S[j])

        possible = True
        for j in range(Nt):
            if Stmp[j] == "W":
                continue

            elif Stmp[j] == "R":
                if j - Kr >= 0:
                    if Stmp[j - Kr] == "R":
                        possible = False
                        break
                if j + Kr <= Nt - 1:
                    if Stmp[j + Kr] == "R":
                        possible = False
                        break

            elif Stmp[j] == "B":
                if j - Kb >= 0:
                    if Stmp[j - Kb] == "B":
                        possible = False
                        break
                if j + Kb <= Nt - 1:
                    if Stmp[j + Kb] == "B":
                        possible = False
                        break

        if possible:
            possible_i = True
            break

    if possible_i:
        res = Nt
        break

print("{}".format(res))
0