結果

問題 No.2854 -1 Subsequence
ユーザー tentententen
提出日時 2024-08-26 17:14:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 1,791 bytes
コンパイル時間 2,429 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 68,152 KB
最終ジャッジ日時 2024-08-26 17:14:37
合計ジャッジ時間 13,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
61,188 KB
testcase_01 AC 321 ms
64,104 KB
testcase_02 AC 320 ms
61,132 KB
testcase_03 AC 226 ms
56,084 KB
testcase_04 AC 325 ms
63,680 KB
testcase_05 AC 276 ms
59,944 KB
testcase_06 AC 199 ms
56,160 KB
testcase_07 AC 339 ms
64,084 KB
testcase_08 AC 163 ms
54,852 KB
testcase_09 AC 293 ms
57,940 KB
testcase_10 AC 362 ms
68,152 KB
testcase_11 AC 363 ms
67,712 KB
testcase_12 AC 355 ms
67,228 KB
testcase_13 AC 366 ms
67,808 KB
testcase_14 AC 359 ms
67,404 KB
testcase_15 AC 365 ms
67,808 KB
testcase_16 AC 367 ms
67,924 KB
testcase_17 AC 364 ms
67,712 KB
testcase_18 AC 361 ms
67,524 KB
testcase_19 AC 367 ms
68,068 KB
testcase_20 AC 355 ms
65,812 KB
testcase_21 AC 359 ms
68,092 KB
testcase_22 AC 370 ms
65,400 KB
testcase_23 AC 56 ms
50,100 KB
testcase_24 AC 57 ms
50,316 KB
testcase_25 AC 57 ms
50,236 KB
testcase_26 AC 58 ms
50,236 KB
testcase_27 AC 55 ms
50,316 KB
testcase_28 AC 57 ms
50,048 KB
testcase_29 AC 56 ms
50,404 KB
testcase_30 AC 58 ms
50,392 KB
testcase_31 AC 57 ms
50,444 KB
testcase_32 AC 55 ms
50,248 KB
testcase_33 AC 56 ms
50,360 KB
testcase_34 AC 56 ms
50,476 KB
testcase_35 AC 56 ms
50,496 KB
testcase_36 AC 56 ms
50,264 KB
testcase_37 AC 57 ms
49,916 KB
testcase_38 AC 64 ms
50,496 KB
testcase_39 AC 56 ms
50,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static long[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[n - i - 1] = sc.nextInt();
        }
        dp = new long[n][2];
        for (long[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        long ans = Long.MIN_VALUE;
        for (int i = 0; i < n; i++) {
            ans = Math.max(ans, dfw(i - 1, 0) - values[i]);
        }
        System.out.println(ans);
    }
    
    static long dfw(int idx, int v) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx - 1, v ^ 1) + values[idx] * (v == 0 ? 1 : -1));
        }
        return dp[idx][v];
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0