結果

問題 No.38 赤青白ブロック
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-15 13:15:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,944 ms / 5,000 ms
コード長 977 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 78,468 KB
最終ジャッジ日時 2024-09-16 21:42:51
合計ジャッジ時間 44,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,469 ms
77,112 KB
testcase_01 AC 1,944 ms
78,468 KB
testcase_02 AC 1,577 ms
77,588 KB
testcase_03 AC 1,875 ms
78,072 KB
testcase_04 AC 1,569 ms
77,880 KB
testcase_05 AC 1,302 ms
77,444 KB
testcase_06 AC 1,678 ms
77,888 KB
testcase_07 AC 1,680 ms
78,008 KB
testcase_08 AC 1,337 ms
77,652 KB
testcase_09 AC 1,591 ms
77,612 KB
testcase_10 AC 1,323 ms
76,672 KB
testcase_11 AC 1,336 ms
77,064 KB
testcase_12 AC 1,451 ms
77,460 KB
testcase_13 AC 1,343 ms
76,956 KB
testcase_14 AC 1,583 ms
77,504 KB
testcase_15 AC 1,550 ms
77,132 KB
testcase_16 AC 1,784 ms
77,660 KB
testcase_17 AC 1,576 ms
77,812 KB
testcase_18 AC 1,415 ms
77,852 KB
testcase_19 AC 1,508 ms
77,424 KB
testcase_20 AC 1,629 ms
78,052 KB
testcase_21 AC 1,855 ms
77,864 KB
testcase_22 AC 1,654 ms
77,848 KB
testcase_23 AC 1,436 ms
77,440 KB
testcase_24 AC 1,696 ms
77,868 KB
testcase_25 AC 1,539 ms
77,644 KB
testcase_26 AC 1,534 ms
77,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
# input = sys.stdin.readline

Kr,Kb = map(int,input().split())
S = list(input())
A = []
for s in S:
    if s=='R':
        A.append(2)
    elif s=='B':
        A.append(1)
    else:
        A.append(0)

R = []
B = []
for i,s in enumerate(S):
    if s=='R':
        R.append(i)
    if s=='B':
        B.append(i)
S = A[:]

def is_ok(X):
    
    T = []
    for i,s in enumerate(S):
        if i in X:
            continue
        T.append(s)
    
    if any((T[i]==1)&(T[i]==T[i+Kb]) for i in range(len(T)-Kb)):
        return -1
        
    if any((T[i]==2)&(T[i]==T[i+Kr]) for i in range(len(T)-Kr)):
        return -1
        
    return len(T)
   
Z = R+B
ans = -1

for i in range(1<<20):
    
    
    X = []
    
    for j in range(20):
        
        if (i>>j)&1:
            X.append(Z[j])
        
    X = set(X)
    ans = max(ans,is_ok(X))
print(ans)
    
0