結果

問題 No.291 黒い文字列
ユーザー GrenacheGrenache
提出日時 2015-10-17 01:12:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 2,464 bytes
コンパイル時間 4,003 ms
コンパイル使用メモリ 78,560 KB
実行使用メモリ 57,580 KB
最終ジャッジ日時 2024-07-22 06:58:44
合計ジャッジ時間 11,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
56,848 KB
testcase_01 AC 167 ms
56,464 KB
testcase_02 AC 185 ms
56,968 KB
testcase_03 AC 190 ms
56,896 KB
testcase_04 AC 168 ms
56,504 KB
testcase_05 AC 174 ms
57,056 KB
testcase_06 AC 185 ms
57,084 KB
testcase_07 AC 174 ms
56,592 KB
testcase_08 AC 172 ms
57,448 KB
testcase_09 AC 162 ms
56,664 KB
testcase_10 AC 190 ms
57,556 KB
testcase_11 AC 214 ms
57,372 KB
testcase_12 AC 196 ms
57,224 KB
testcase_13 AC 170 ms
56,552 KB
testcase_14 AC 187 ms
57,208 KB
testcase_15 AC 186 ms
57,216 KB
testcase_16 AC 271 ms
57,076 KB
testcase_17 AC 274 ms
57,320 KB
testcase_18 AC 267 ms
57,424 KB
testcase_19 AC 279 ms
57,580 KB
testcase_20 AC 292 ms
57,352 KB
testcase_21 AC 262 ms
57,384 KB
testcase_22 AC 304 ms
57,120 KB
testcase_23 AC 331 ms
57,168 KB
testcase_24 AC 327 ms
57,112 KB
testcase_25 AC 271 ms
57,160 KB
testcase_26 AC 267 ms
57,360 KB
testcase_27 AC 270 ms
57,232 KB
testcase_28 AC 219 ms
57,556 KB
testcase_29 AC 262 ms
57,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main_yukicoder291 {

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

        char[] s = sc.next().toCharArray();
        int n = s.length;

        int[][][][][] dp = new int[2][20 + 1][20 + 1][20 + 1][20 + 1];
        for (int i = 0; i < 2; i++) {
    	for (int jk = 0; jk <= 20; jk++) {
        	for (int ju = 0; ju <= 20; ju++) {
            	for (int jr = 0; jr <= 20; jr++) {
//                	for (int jo = 0; jo <= 20; jo++) {
                		Arrays.fill(dp[i][jk][ju][jr], -1);
//                	}
            	}
        	}
    	}
        }
    	dp[0][0][0][0][0] = 0;

    	int ret = 0;
        for (int i = 0; i < n; i++) {
        	int now = i % 2;
        	int next = (i + 1) % 2;
        	for (int jk = 0; jk <= 20; jk++) {
            	for (int ju = 0; ju <= 20; ju++) {
                	for (int jr = 0; jr <= 20; jr++) {
                    	for (int jo = 0; jo <= 20; jo++) {
                    		int d = dp[now][jk][ju][jr][jo];
                    		if (d < 0) {
                    			continue;
                    		}

                    		dp[next][jk][ju][jr][jo] = Math.max(dp[next][jk][ju][jr][jo], d);
                    		if ((s[i] == 'K' || s[i] == '?') && jk < 20) {
                    			dp[next][jk + 1][ju][jr][jo] = Math.max(dp[next][jk + 1][ju][jr][jo], d);
                    		}
                    		if ((s[i] == 'U' || s[i] == '?') && ju < 20 && jk > 0) {
                    			dp[next][jk - 1][ju + 1][jr][jo] = Math.max(dp[next][jk - 1][ju + 1][jr][jo], d);
                    		}
                    		if ((s[i] == 'R' || s[i] == '?') && jr < 20 && ju > 0) {
                    			dp[next][jk][ju - 1][jr + 1][jo] = Math.max(dp[next][jk][ju - 1][jr + 1][jo], d);
                    		}
                    		if ((s[i] == 'O' || s[i] == '?') && jo < 20 && jr > 0) {
                    			dp[next][jk][ju][jr - 1][jo + 1] = Math.max(dp[next][jk][ju][jr - 1][jo + 1], d);
                    		}
                    		if ((s[i] == 'I' || s[i] == '?') && jo > 0) {
                    			dp[next][jk][ju][jr][jo - 1] = Math.max(dp[next][jk][ju][jr][jo - 1], d + 1);
                    			ret = Math.max(ret, dp[next][jk][ju][jr][jo - 1]);
                    		}
                    	}
                	}
            	}
        	}
        }

        System.out.println(ret);

        sc.close();
    }
}
0