結果

問題 No.38 赤青白ブロック
ユーザー GrenacheGrenache
提出日時 2016-03-30 16:54:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 590 ms / 5,000 ms
コード長 1,484 bytes
コンパイル時間 3,706 ms
コンパイル使用メモリ 77,664 KB
実行使用メモリ 47,560 KB
最終ジャッジ日時 2024-06-06 02:13:53
合計ジャッジ時間 19,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 588 ms
46,880 KB
testcase_01 AC 533 ms
47,556 KB
testcase_02 AC 560 ms
47,144 KB
testcase_03 AC 545 ms
47,052 KB
testcase_04 AC 534 ms
47,100 KB
testcase_05 AC 499 ms
46,968 KB
testcase_06 AC 517 ms
47,372 KB
testcase_07 AC 531 ms
47,096 KB
testcase_08 AC 533 ms
46,808 KB
testcase_09 AC 529 ms
46,984 KB
testcase_10 AC 510 ms
46,508 KB
testcase_11 AC 534 ms
46,992 KB
testcase_12 AC 526 ms
47,096 KB
testcase_13 AC 477 ms
46,844 KB
testcase_14 AC 568 ms
47,200 KB
testcase_15 AC 590 ms
46,868 KB
testcase_16 AC 502 ms
47,560 KB
testcase_17 AC 495 ms
46,740 KB
testcase_18 AC 583 ms
47,344 KB
testcase_19 AC 577 ms
47,048 KB
testcase_20 AC 549 ms
47,048 KB
testcase_21 AC 538 ms
46,956 KB
testcase_22 AC 527 ms
47,016 KB
testcase_23 AC 529 ms
47,228 KB
testcase_24 AC 567 ms
47,280 KB
testcase_25 AC 577 ms
47,344 KB
testcase_26 AC 495 ms
46,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder38 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int kr = sc.nextInt();
        int kb = sc.nextInt();
        char[] s = sc.next().toCharArray();

        int max = 0;
        for (int mask = 0; mask < 0x1 << 20; mask++) {
            int ir = 0;
            int ib = 0;
        	StringBuilder tmp = new StringBuilder();
            for (int i = 0; i < s.length; i++) {
            	if (s[i] == 'R') {
            		if ((mask & 0x1 << ir++) != 0) {
            			continue;
            		}
            	} else if (s[i] == 'B') {
            		if ((mask & 0x1 << 10 + ib++) != 0) {
            			continue;
            		}
            	}

            	tmp.append(s[i]);
            }

        	if (isOK(tmp, kr, kb)) {
        		max = Math.max(max, 30 - Integer.bitCount(mask));
        	}
        }

        System.out.println(max);

        sc.close();
    }

	private static boolean isOK(StringBuilder s, int kr, int kb) {
		int n = s.length();
		for (int i = 0; i < n; i++) {
			if (s.charAt(i) == 'R') {
				if (i - kr >= 0 && s.charAt(i - kr) == 'R') {
					return false;
				}
				if (i + kr < n && s.charAt(i + kr) == 'R') {
					return false;
				}
			} else if (s.charAt(i) == 'B') {
				if (i - kb >= 0 && s.charAt(i - kb) == 'B') {
					return false;
				}
				if (i + kb < n && s.charAt(i + kb) == 'B') {
					return false;
				}
			}
		}

		return true;
	}
}
0