結果
問題 | No.38 赤青白ブロック |
ユーザー | atn112323 |
提出日時 | 2016-05-08 13:19:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 205 ms / 5,000 ms |
コード長 | 807 bytes |
コンパイル時間 | 474 ms |
コンパイル使用メモリ | 58,484 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 02:16:35 |
合計ジャッジ時間 | 6,505 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
5,248 KB |
testcase_01 | AC | 170 ms
5,376 KB |
testcase_02 | AC | 167 ms
5,376 KB |
testcase_03 | AC | 176 ms
5,376 KB |
testcase_04 | AC | 175 ms
5,376 KB |
testcase_05 | AC | 200 ms
5,376 KB |
testcase_06 | AC | 172 ms
5,376 KB |
testcase_07 | AC | 171 ms
5,376 KB |
testcase_08 | AC | 205 ms
5,376 KB |
testcase_09 | AC | 184 ms
5,376 KB |
testcase_10 | AC | 193 ms
5,376 KB |
testcase_11 | AC | 193 ms
5,376 KB |
testcase_12 | AC | 176 ms
5,376 KB |
testcase_13 | AC | 198 ms
5,376 KB |
testcase_14 | AC | 181 ms
5,376 KB |
testcase_15 | AC | 195 ms
5,376 KB |
testcase_16 | AC | 158 ms
5,376 KB |
testcase_17 | AC | 170 ms
5,376 KB |
testcase_18 | AC | 198 ms
5,376 KB |
testcase_19 | AC | 174 ms
5,376 KB |
testcase_20 | AC | 184 ms
5,376 KB |
testcase_21 | AC | 167 ms
5,376 KB |
testcase_22 | AC | 192 ms
5,376 KB |
testcase_23 | AC | 190 ms
5,376 KB |
testcase_24 | AC | 170 ms
5,376 KB |
testcase_25 | AC | 186 ms
5,376 KB |
testcase_26 | AC | 181 ms
5,376 KB |
ソースコード
#include <algorithm> #include <iostream> #include <string> using namespace std; int Kr, Kb; string S; bool check(const string& str) { for (int i = 0; i < str.length(); i++) { if (str[i] == 'R' && i + Kr < str.length() && str[i + Kr] == 'R') { return false; } if (str[i] == 'B' && i + Kb < str.length() && str[i + Kb] == 'B') { return false; } } return true; } int main() { cin >> Kr >> Kb >> S; int s = 0; for (int i = 0; i < S.length(); i++) { if (S[i] != 'W') { s |= (1 << i); } } int res = 0; int comb = s; do { string str; for (int i = 0; i < S.length(); i++) { if (((comb >> i) & 1) == 0) { str += S[i]; } } if (check(str)) { res = max(res, (int)str.length()); } comb = (comb - 1) & s; } while (comb != s); cout << res << endl; return 0; }