結果

問題 No.38 赤青白ブロック
ユーザー itezpaceitezpace
提出日時 2016-11-30 06:37:52
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 229 ms / 5,000 ms
コード長 946 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 62,812 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 13:04:31
合計ジャッジ時間 7,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
5,248 KB
testcase_01 AC 184 ms
5,248 KB
testcase_02 AC 188 ms
5,248 KB
testcase_03 AC 191 ms
5,248 KB
testcase_04 AC 192 ms
5,248 KB
testcase_05 AC 224 ms
5,248 KB
testcase_06 AC 201 ms
5,248 KB
testcase_07 AC 196 ms
5,248 KB
testcase_08 AC 229 ms
5,248 KB
testcase_09 AC 202 ms
5,248 KB
testcase_10 AC 220 ms
5,248 KB
testcase_11 AC 229 ms
5,248 KB
testcase_12 AC 199 ms
5,248 KB
testcase_13 AC 227 ms
5,248 KB
testcase_14 AC 205 ms
5,248 KB
testcase_15 AC 216 ms
5,248 KB
testcase_16 AC 177 ms
5,248 KB
testcase_17 AC 191 ms
5,248 KB
testcase_18 AC 214 ms
5,248 KB
testcase_19 AC 195 ms
5,248 KB
testcase_20 AC 198 ms
5,248 KB
testcase_21 AC 182 ms
5,248 KB
testcase_22 AC 204 ms
5,248 KB
testcase_23 AC 220 ms
5,248 KB
testcase_24 AC 194 ms
5,248 KB
testcase_25 AC 214 ms
5,248 KB
testcase_26 AC 201 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <bitset>
#include <vector>
using namespace  std;
int main(){
  int Kr,Kb; string S;
  cin>>Kr>>Kb;
  cin>>S;
  vector<int> v1;
  for(int i=0;i<S.size();++i){
    if(S[i]=='B' || S[i]=='R') v1.push_back(i);
  }
  int ans=0;
  for(int i=0;i<1048576;++i){
    bitset<20> bs1(i);
    string S2=S;
    int a=0;
    for(int j=0;j<20;++j){
      if(!bs1.test(j)){
        S2.erase(v1[j]-a,1);
        a+=1;
      }
    }
    bool check=true;
    for(int j=0;j<S2.size();++j){
      if(S2[j]=='R' && j+Kr<S2.size() && S2[j+Kr]=='R'){
        check=false;break;
      }
      if(S2[j]=='R' && j-Kr>=0 && S2[j-Kr]=='R'){
        check=false;break;
      }
      if(S2[j]=='B' && j+Kb<S2.size() && S2[j+Kb]=='B'){
        check=false;break;
      }
      if(S2[j]=='B' && j-Kb>=0 && S2[j-Kb]=='B'){
        check=false;break;
      }
    }
    if(check && ans<S2.size()) ans=S2.size();
  }
  cout<<ans<<endl;
}
0