結果

問題 No.38 赤青白ブロック
ユーザー tentententen
提出日時 2023-01-26 11:09:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 2,906 bytes
コンパイル時間 2,936 ms
コンパイル使用メモリ 88,348 KB
実行使用メモリ 41,032 KB
最終ジャッジ日時 2024-06-27 07:06:07
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
39,284 KB
testcase_01 AC 206 ms
40,884 KB
testcase_02 AC 215 ms
39,416 KB
testcase_03 AC 207 ms
39,320 KB
testcase_04 AC 185 ms
39,040 KB
testcase_05 AC 238 ms
39,072 KB
testcase_06 AC 171 ms
39,480 KB
testcase_07 AC 187 ms
39,100 KB
testcase_08 AC 257 ms
39,012 KB
testcase_09 AC 198 ms
39,040 KB
testcase_10 AC 224 ms
38,304 KB
testcase_11 AC 252 ms
39,348 KB
testcase_12 AC 247 ms
39,104 KB
testcase_13 AC 244 ms
39,376 KB
testcase_14 AC 208 ms
39,372 KB
testcase_15 AC 242 ms
39,096 KB
testcase_16 AC 163 ms
40,752 KB
testcase_17 AC 228 ms
39,396 KB
testcase_18 AC 261 ms
39,356 KB
testcase_19 AC 221 ms
38,836 KB
testcase_20 AC 228 ms
41,032 KB
testcase_21 AC 217 ms
39,372 KB
testcase_22 AC 193 ms
38,868 KB
testcase_23 AC 250 ms
39,084 KB
testcase_24 AC 176 ms
39,212 KB
testcase_25 AC 247 ms
38,972 KB
testcase_26 AC 214 ms
39,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int kr = sc.nextInt();
        int kb = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int[] idxes = new int[inputs.length];
        int counter = 0;
        for (int i = 0; i < inputs.length; i++) {
            if (inputs[i] == 'W') {
                idxes[i] = -1;
            } else {
                idxes[i] = counter++;
            }
        }
        int ans = 0;
        char[] tmp = new char[inputs.length];
        for (int i = 0; i < (1 << counter); i++) {
            int k = 0;
            boolean enable = true;
            for (int j = 0; j < inputs.length; j++) {
                if (idxes[j] == -1) {
                    tmp[k++] = 'W';
                } else {
                    if ((i & (1 << idxes[j])) == 0) {
                        continue;
                    }
                    if (inputs[j] == 'R') {
                        if (k - kr >= 0 && tmp[k - kr] == 'R') {
                            enable = false;
                            break;
                        }
                        tmp[k++] = 'R';
                    } else {
                        if (k - kb >= 0 && tmp[k - kb] == 'B') {
                            enable = false;
                            break;
                        }
                        tmp[k++] = 'B';
                    }
                }
            }
            if (enable) {
                ans = Math.max(ans, k);
            }
        }
        System.out.println(ans);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0