結果

問題 No.921 ずんだアロー
ユーザー tentententen
提出日時 2020-08-27 01:49:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 613 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 82,812 KB
実行使用メモリ 49,148 KB
最終ジャッジ日時 2024-11-07 14:25:19
合計ジャッジ時間 12,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,056 KB
testcase_01 AC 115 ms
39,772 KB
testcase_02 AC 130 ms
41,084 KB
testcase_03 AC 129 ms
41,084 KB
testcase_04 AC 124 ms
40,004 KB
testcase_05 AC 121 ms
40,272 KB
testcase_06 AC 159 ms
41,572 KB
testcase_07 AC 146 ms
41,516 KB
testcase_08 AC 124 ms
40,004 KB
testcase_09 AC 143 ms
41,052 KB
testcase_10 AC 611 ms
48,936 KB
testcase_11 AC 607 ms
49,148 KB
testcase_12 AC 358 ms
47,740 KB
testcase_13 AC 582 ms
48,272 KB
testcase_14 AC 592 ms
48,836 KB
testcase_15 AC 484 ms
48,040 KB
testcase_16 AC 240 ms
45,504 KB
testcase_17 AC 572 ms
48,900 KB
testcase_18 AC 518 ms
46,628 KB
testcase_19 AC 510 ms
47,560 KB
testcase_20 AC 503 ms
47,368 KB
testcase_21 AC 534 ms
46,712 KB
testcase_22 AC 550 ms
47,268 KB
testcase_23 AC 613 ms
49,032 KB
testcase_24 AC 503 ms
46,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int prev = sc.nextInt();
    	int count = 1;
    	ArrayList<Integer> list = new ArrayList<>();
    	for (int i = 1; i < n; i++) {
    	    int x = sc.nextInt();
    	    if (x == prev) {
    	        count++;
    	    } else {
    	        list.add(count);
    	        count = 1;
    	        prev = x;
    	    }
    	}
    	list.add(count);
    	int length = list.size();
    	int[][] dp = new int[2][length];
    	dp[1][0] = list.get(0);
    	for (int i = 1; i < length; i++) {
    	    dp[1][i] = Math.max(dp[0][i - 1], dp[1][i - 1] - 1) + list.get(i);
    	    dp[0][i] = Math.max(dp[0][i - 1], dp[1][i - 1]);
    	}
    	System.out.println(Math.max(dp[0][length - 1], dp[1][length - 1]));
    }
}
0