結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,952 KB
testcase_01 AC 130 ms
53,728 KB
testcase_02 AC 140 ms
54,000 KB
testcase_03 AC 284 ms
85,752 KB
testcase_04 AC 278 ms
85,904 KB
testcase_05 AC 276 ms
85,184 KB
testcase_06 AC 277 ms
86,196 KB
testcase_07 AC 265 ms
86,884 KB
testcase_08 AC 273 ms
85,732 KB
testcase_09 AC 273 ms
86,032 KB
testcase_10 AC 131 ms
54,108 KB
testcase_11 AC 130 ms
54,104 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