結果

問題 No.884 Eat and Add
ユーザー tentententen
提出日時 2020-08-31 11:51:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 299 ms / 1,000 ms
コード長 1,090 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 87,000 KB
最終ジャッジ日時 2024-04-27 15:36:21
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,416 KB
testcase_01 AC 132 ms
54,020 KB
testcase_02 AC 134 ms
53,928 KB
testcase_03 AC 279 ms
85,456 KB
testcase_04 AC 283 ms
85,304 KB
testcase_05 AC 295 ms
85,644 KB
testcase_06 AC 299 ms
87,000 KB
testcase_07 AC 268 ms
85,984 KB
testcase_08 AC 277 ms
85,532 KB
testcase_09 AC 273 ms
86,964 KB
testcase_10 AC 131 ms
54,192 KB
testcase_11 AC 131 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static char[] arr;
    static int[][] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	arr = sc.next().toCharArray();
    	int length = arr.length;
    	dp = new int[length + 1][2];
    	for (int[] arr : dp) {
    	    Arrays.fill(arr, -1);
    	}
    	System.out.println(dfw(length, 0));
    }
    
    static int dfw(int idx, int added) {
        if (idx == 0) {
            return added;
        }
        if (dp[idx][added] == -1) {
            if (added == 0) {
                if (arr[idx - 1] == '0') {
                    dp[idx][added] = dfw(idx - 1, 0);
                } else {
                    dp[idx][added] = Math.min(dfw(idx - 1, 0), dfw(idx - 1, 1)) + 1;
                }
            } else {
                if (arr[idx - 1] == '0') {
                    dp[idx][added] = Math.min(dfw(idx - 1, 0), dfw(idx - 1, 1)) + 1;
                } else {
                    dp[idx][added] = dfw(idx - 1, 1);
                }
            }
        }
        return dp[idx][added];
    }
}
0