結果

問題 No.324 落ちてた閉路グラフ
ユーザー GrenacheGrenache
提出日時 2015-12-18 16:50:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 3,287 bytes
コンパイル時間 4,212 ms
コンパイル使用メモリ 80,232 KB
実行使用メモリ 53,240 KB
最終ジャッジ日時 2023-08-09 21:40:17
合計ジャッジ時間 8,660 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,484 KB
testcase_01 AC 45 ms
49,480 KB
testcase_02 AC 44 ms
49,388 KB
testcase_03 AC 44 ms
49,556 KB
testcase_04 AC 130 ms
53,048 KB
testcase_05 AC 189 ms
52,896 KB
testcase_06 AC 119 ms
53,240 KB
testcase_07 AC 181 ms
52,944 KB
testcase_08 AC 126 ms
52,536 KB
testcase_09 AC 104 ms
52,660 KB
testcase_10 AC 124 ms
52,728 KB
testcase_11 AC 106 ms
52,680 KB
testcase_12 AC 60 ms
51,660 KB
testcase_13 AC 57 ms
50,884 KB
testcase_14 AC 91 ms
52,540 KB
testcase_15 AC 105 ms
52,972 KB
testcase_16 AC 46 ms
49,384 KB
testcase_17 AC 46 ms
49,624 KB
testcase_18 AC 45 ms
49,380 KB
testcase_19 AC 45 ms
49,416 KB
testcase_20 AC 46 ms
49,456 KB
testcase_21 AC 46 ms
49,844 KB
testcase_22 AC 45 ms
49,712 KB
testcase_23 AC 46 ms
49,456 KB
testcase_24 AC 46 ms
49,404 KB
testcase_25 AC 46 ms
49,524 KB
testcase_26 AC 45 ms
49,428 KB
testcase_27 AC 46 ms
49,488 KB
testcase_28 AC 46 ms
49,452 KB
testcase_29 AC 45 ms
49,528 KB
testcase_30 AC 46 ms
49,420 KB
testcase_31 AC 46 ms
49,452 KB
testcase_32 AC 190 ms
52,848 KB
testcase_33 AC 172 ms
52,848 KB
testcase_34 AC 127 ms
52,820 KB
testcase_35 AC 51 ms
49,608 KB
testcase_36 AC 96 ms
52,892 KB
testcase_37 AC 47 ms
49,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Iterator;


public class Main_yukicoder324_1 {

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

        final int INF = Integer.MAX_VALUE / 2;

        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] w = new int[n];
        for (int i = 0; i < n; i++) {
        	w[i] = sc.nextInt();
        }

        if (m == 0) {
        	pr.println(0);

        	pr.close();
        	sc.close();
        	return;
        }

        int[][][] dp = new int[2][m + 1][2];
        int[][][] dp2 = new int[2][m + 1][2];
        for (int i = 0; i < 2; i++) {
        	for (int j = 0; j <= m; j++) {
        		Arrays.fill(dp[i][j], -INF);
        		Arrays.fill(dp2[i][j], -INF);
        	}
        }
        for (int i = 0; i < 2; i++) {
        	dp[i][0][0] = 0;
        }
        dp2[0][1][1] = 0;

        for (int i = 1; i < n; i++) {
        	int tmpi = i % 2;
        	int tmpim = (i + 1) % 2;
        	for (int j = 1; j <= m; j++) {
        		if (i != n - 1) {
        			dp[tmpi][j][0] = Math.max(dp[tmpim][j][0], dp[tmpim][j][1]);
        			dp[tmpi][j][1] = Math.max(dp[tmpim][j - 1][0], dp[tmpim][j - 1][1] + w[i - 1]);
        			dp2[tmpi][j][0] = Math.max(dp2[tmpim][j][0], dp2[tmpim][j][1]);
        			dp2[tmpi][j][1] = Math.max(dp2[tmpim][j - 1][0], dp2[tmpim][j - 1][1] + w[i - 1]);
        		} else {
        			dp[tmpi][j][0] = Math.max(dp[tmpim][j][0], dp[tmpim][j][1]);
        			dp[tmpi][j][1] = Math.max(dp[tmpim][j - 1][0], dp[tmpim][j - 1][1] + w[i - 1]);
        			dp2[tmpi][j][0] = Math.max(dp2[tmpim][j][0], dp2[tmpim][j][1]);
        			dp2[tmpi][j][1] = Math.max(dp2[tmpim][j - 1][0] + w[i], dp2[tmpim][j - 1][1] + w[i - 1] + w[i]);
        		}
        	}
        }

        int max = -INF;
        for (int i = 0; i < 2; i++) {
        	max = Math.max(max, dp[(n - 1) % 2][m][i]);
        	max = Math.max(max, dp2[(n - 1) % 2][m][i]);
        }

        pr.println(max);

        pr.close();
        sc.close();
    }

    @SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0