結果

問題 No.38 赤青白ブロック
ユーザー beetbeet
提出日時 2019-02-22 21:16:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 388 ms / 5,000 ms
コード長 1,163 bytes
コンパイル時間 1,822 ms
コンパイル使用メモリ 205,224 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 04:52:34
合計ジャッジ時間 13,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
6,816 KB
testcase_01 AC 370 ms
6,816 KB
testcase_02 AC 370 ms
6,820 KB
testcase_03 AC 382 ms
6,816 KB
testcase_04 AC 376 ms
6,816 KB
testcase_05 AC 374 ms
6,816 KB
testcase_06 AC 369 ms
6,820 KB
testcase_07 AC 367 ms
6,816 KB
testcase_08 AC 372 ms
6,816 KB
testcase_09 AC 378 ms
6,816 KB
testcase_10 AC 375 ms
6,816 KB
testcase_11 AC 381 ms
6,816 KB
testcase_12 AC 387 ms
6,820 KB
testcase_13 AC 379 ms
6,816 KB
testcase_14 AC 373 ms
6,820 KB
testcase_15 AC 369 ms
6,820 KB
testcase_16 AC 383 ms
6,820 KB
testcase_17 AC 372 ms
6,816 KB
testcase_18 AC 373 ms
6,816 KB
testcase_19 AC 362 ms
6,816 KB
testcase_20 AC 384 ms
6,816 KB
testcase_21 AC 365 ms
6,816 KB
testcase_22 AC 366 ms
6,820 KB
testcase_23 AC 381 ms
6,820 KB
testcase_24 AC 382 ms
6,816 KB
testcase_25 AC 388 ms
6,820 KB
testcase_26 AC 370 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  int p,q;
  cin>>p>>q;
  string s;
  cin>>s;
  vector<int> rs(10),bs(10);
  for(int i=0,r=0,b=0;i<30;i++){
    if(s[i]=='R') rs[r++]=i;
    if(s[i]=='B') bs[b++]=i;
  }
  int ans=0;
  for(int r=0;r<(1<<10);r++){
    for(int b=0;b<(1<<10);b++){
      vector<int> used(30,0);
      for(int i=0,j=0;i<30;i++){
        if(s[i]!='R') continue;
        if((r>>j)&1) used[rs[j]]=1;
        j++;
      }
      for(int i=0,j=0;i<30;i++){
        if(s[i]!='B') continue;
        if((b>>j)&1) used[bs[j]]=1;
        j++;
      }
      for(int i=0;i<30;i++)
        if(s[i]=='W') used[i]=1;
      
      string t;
      for(int i=0;i<30;i++)
        if(used[i]) t+=s[i];

      int m=t.size();
      int flg=1;
      for(int i=0;i<m;i++){
        if(t[i]=='R'&&i>=p&&t[i-p]=='R') flg=0;
        if(t[i]=='B'&&i>=q&&t[i-q]=='B') flg=0;
      }
      if(flg) chmax(ans,m);
    }
  }
  cout<<ans<<endl;
  return 0;
}
0