結果

問題 No.38 赤青白ブロック
ユーザー togatogatogatoga
提出日時 2015-09-15 19:28:59
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 275 ms / 5,000 ms
コード長 1,906 bytes
コンパイル時間 1,176 ms
コンパイル使用メモリ 92,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 12:53:48
合計ジャッジ時間 8,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
5,248 KB
testcase_01 AC 256 ms
5,248 KB
testcase_02 AC 251 ms
5,248 KB
testcase_03 AC 253 ms
5,248 KB
testcase_04 AC 253 ms
5,248 KB
testcase_05 AC 251 ms
5,248 KB
testcase_06 AC 249 ms
5,248 KB
testcase_07 AC 246 ms
5,248 KB
testcase_08 AC 261 ms
5,248 KB
testcase_09 AC 252 ms
5,248 KB
testcase_10 AC 258 ms
5,248 KB
testcase_11 AC 252 ms
5,248 KB
testcase_12 AC 258 ms
5,248 KB
testcase_13 AC 257 ms
5,248 KB
testcase_14 AC 266 ms
5,248 KB
testcase_15 AC 253 ms
5,248 KB
testcase_16 AC 268 ms
5,248 KB
testcase_17 AC 275 ms
5,248 KB
testcase_18 AC 262 ms
5,248 KB
testcase_19 AC 263 ms
5,248 KB
testcase_20 AC 274 ms
5,248 KB
testcase_21 AC 260 ms
5,248 KB
testcase_22 AC 270 ms
5,248 KB
testcase_23 AC 261 ms
5,248 KB
testcase_24 AC 260 ms
5,248 KB
testcase_25 AC 263 ms
5,248 KB
testcase_26 AC 262 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <set>
#include <list>
#include <cmath>
#include <queue>
#include <stack>
#include <cstdio>
#include <string>
#include <vector>
#include <complex>
#include <cstdlib>
#include <cstring>
#include <numeric>
#include <sstream>
#include <algorithm>
#include <functional>
#include <limits.h>
#include <bitset>

#include <tuple>
#include <unordered_map>

#define mp       make_pair
#define mt       make_tuple
#define pb       push_back
#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

typedef    long long          ll;
typedef    unsigned long long ull;
typedef    pair<int,int>      pii;

const int INF=1<<29;
const double EPS=1e-9;

const int dx[]={1,0,-1,0},dy[]={0,-1,0,1};

int Kr,Kb;
string S;
int N;
vector<int> indexs;
bool used[30];
int main(){
  cin >> Kr >> Kb;
  cin >> S;
  N = S.size();
  for (int i = 0; i < N; i++){
    if (S[i] != 'W'){
      indexs.push_back(i);
    }
  }
  int ans = 0;
  for (int bit = 0; bit < (1 << indexs.size()); bit++){
    memset(used, false, sizeof(used));
    
    for (int i = 0; i < N; i++){
      if (S[i] == 'W'){
	used[i] = true;
      }
    }
    for (int i = 0; i < indexs.size(); i++){
      if (bit >> i & 1){
	used[indexs[i]] = true;
      }
    }
    string tmp = "";
    for (int i = 0; i < N; i++){
      if (used[i]){
	tmp += S[i];
      }
    }
    if (tmp.size() <= ans)continue;
    bool ok = true;
    for (int i = 0; i < tmp.size(); i++){
      if (tmp[i] == 'R'){
	if (i - Kr >= 0){
	  ok &= tmp[i - Kr] == 'R' ? false : true;
	}
	if (i + Kr < tmp.size()){
	  ok &= tmp[i + Kr] == 'R' ? false : true;	  
	}
      }
      if (tmp[i] == 'B'){
	if (i - Kb >= 0){
	  ok &= tmp[i - Kb] == 'B' ? false : true;
	}
	if (i + Kb < tmp.size()){
	  ok &= tmp[i + Kb] == 'B' ? false : true;	  
	}
      }
    }
    
    if (ok){
      ans = max(ans, (int)tmp.size());
    }
  }
  cout << ans << endl;
}
0