結果

問題 No.324 落ちてた閉路グラフ
ユーザー GrenacheGrenache
提出日時 2015-12-18 16:13:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,382 bytes
コンパイル時間 4,431 ms
コンパイル使用メモリ 79,948 KB
実行使用メモリ 53,364 KB
最終ジャッジ日時 2024-09-16 08:38:01
合計ジャッジ時間 9,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,240 KB
testcase_01 AC 54 ms
37,008 KB
testcase_02 AC 54 ms
37,216 KB
testcase_03 AC 53 ms
37,044 KB
testcase_04 AC 164 ms
40,296 KB
testcase_05 AC 234 ms
40,532 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 159 ms
40,052 KB
testcase_09 WA -
testcase_10 AC 159 ms
39,948 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 AC 71 ms
37,700 KB
testcase_14 AC 118 ms
39,976 KB
testcase_15 AC 130 ms
39,960 KB
testcase_16 RE -
testcase_17 AC 53 ms
36,896 KB
testcase_18 AC 53 ms
36,996 KB
testcase_19 AC 54 ms
36,988 KB
testcase_20 RE -
testcase_21 AC 53 ms
37,064 KB
testcase_22 AC 53 ms
37,188 KB
testcase_23 AC 52 ms
37,088 KB
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 54 ms
37,216 KB
testcase_27 AC 54 ms
36,796 KB
testcase_28 AC 53 ms
36,772 KB
testcase_29 RE -
testcase_30 AC 53 ms
37,332 KB
testcase_31 AC 52 ms
36,784 KB
testcase_32 AC 237 ms
40,428 KB
testcase_33 AC 214 ms
40,472 KB
testcase_34 WA -
testcase_35 AC 64 ms
37,632 KB
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
        }

        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[tmpi][j][0], Math.max(dp[tmpim][j][0], dp[tmpim][j][1]));
        			dp[tmpi][j][1] = Math.max(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[tmpi][j][0], Math.max(dp2[tmpim][j][0], dp2[tmpim][j][1]));
        			dp2[tmpi][j][1] = Math.max(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[tmpi][j][0], Math.max(dp[tmpim][j][0], dp[tmpim][j][1]));
        			dp[tmpi][j][1] = Math.max(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[tmpi][j][0], Math.max(dp2[tmpim][j][0], dp2[tmpim][j][1]));
        			dp2[tmpi][j][1] = Math.max(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