結果

問題 No.38 赤青白ブロック
ユーザー GrenacheGrenache
提出日時 2016-03-30 00:05:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,233 ms / 5,000 ms
コード長 1,794 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 79,868 KB
実行使用メモリ 50,636 KB
最終ジャッジ日時 2024-06-06 02:16:21
合計ジャッジ時間 35,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,130 ms
49,356 KB
testcase_01 AC 1,143 ms
49,952 KB
testcase_02 AC 1,048 ms
49,764 KB
testcase_03 AC 1,163 ms
49,792 KB
testcase_04 AC 1,017 ms
49,672 KB
testcase_05 AC 1,018 ms
49,588 KB
testcase_06 AC 1,180 ms
50,636 KB
testcase_07 AC 1,073 ms
49,932 KB
testcase_08 AC 1,160 ms
49,912 KB
testcase_09 AC 1,233 ms
50,340 KB
testcase_10 AC 1,078 ms
49,552 KB
testcase_11 AC 1,108 ms
49,816 KB
testcase_12 AC 1,081 ms
49,212 KB
testcase_13 AC 1,128 ms
49,964 KB
testcase_14 AC 1,116 ms
49,376 KB
testcase_15 AC 1,088 ms
49,304 KB
testcase_16 AC 1,059 ms
49,540 KB
testcase_17 AC 1,073 ms
49,480 KB
testcase_18 AC 1,082 ms
50,084 KB
testcase_19 AC 1,102 ms
49,692 KB
testcase_20 AC 1,149 ms
50,192 KB
testcase_21 AC 1,160 ms
50,228 KB
testcase_22 AC 1,229 ms
50,320 KB
testcase_23 AC 1,080 ms
50,228 KB
testcase_24 AC 1,186 ms
50,568 KB
testcase_25 AC 1,035 ms
49,640 KB
testcase_26 AC 1,124 ms
49,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;


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[] r = new int[10];
        int[] b = new int[10];
        int ir = 0;
        int ib = 0;
        for (int i = 0; i < s.length; i++) {
        	if (s[i] == 'R') {
        		r[ir++] = i;
        	} else if (s[i] == 'B') {
        		b[ib++] = i;
        	}
        }

        int max = 0;
        for (int mask = 0; mask < 0x1 << 20; mask++) {
        	Set<Integer> hs = new HashSet<>();
        	for (int i = 0; i < 20; i++) {
        		if ((mask & 0x1 << i) != 0) {
        			if (i < 10) {
        				hs.add(r[i]);
        			} else {
        				hs.add(b[i - 10]);
        			}
        		}
        	}

        	StringBuilder tmp = new StringBuilder();
        	for (int i = 0; i < s.length; i++) {
        		if (!hs.contains(i)) {
        			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