結果

問題 No.324 落ちてた閉路グラフ
ユーザー ぴろずぴろず
提出日時 2015-12-17 01:02:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 683 ms / 5,000 ms
コード長 1,622 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 77,408 KB
実行使用メモリ 206,896 KB
最終ジャッジ日時 2024-11-15 19:21:48
合計ジャッジ時間 13,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,524 KB
testcase_01 AC 142 ms
54,104 KB
testcase_02 AC 137 ms
53,828 KB
testcase_03 AC 142 ms
54,372 KB
testcase_04 AC 512 ms
119,148 KB
testcase_05 AC 683 ms
205,848 KB
testcase_06 AC 492 ms
97,572 KB
testcase_07 AC 670 ms
206,896 KB
testcase_08 AC 461 ms
118,944 KB
testcase_09 AC 365 ms
80,652 KB
testcase_10 AC 519 ms
110,076 KB
testcase_11 AC 375 ms
70,832 KB
testcase_12 AC 144 ms
41,524 KB
testcase_13 AC 145 ms
41,524 KB
testcase_14 AC 296 ms
56,440 KB
testcase_15 AC 327 ms
66,004 KB
testcase_16 AC 146 ms
41,392 KB
testcase_17 AC 141 ms
41,436 KB
testcase_18 AC 148 ms
41,792 KB
testcase_19 AC 148 ms
41,628 KB
testcase_20 AC 143 ms
41,148 KB
testcase_21 AC 143 ms
41,552 KB
testcase_22 AC 144 ms
41,168 KB
testcase_23 AC 144 ms
41,292 KB
testcase_24 AC 144 ms
41,500 KB
testcase_25 AC 145 ms
41,204 KB
testcase_26 AC 143 ms
41,524 KB
testcase_27 AC 145 ms
41,636 KB
testcase_28 AC 145 ms
41,472 KB
testcase_29 AC 147 ms
41,660 KB
testcase_30 AC 148 ms
41,200 KB
testcase_31 AC 145 ms
41,548 KB
testcase_32 AC 639 ms
194,568 KB
testcase_33 AC 616 ms
195,152 KB
testcase_34 AC 443 ms
90,320 KB
testcase_35 AC 181 ms
41,836 KB
testcase_36 AC 322 ms
55,536 KB
testcase_37 AC 157 ms
41,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no324;

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		if (m <= 1) {
			System.out.println(0);
			return;
		}
		int[] w = new int[n];
		for(int i=0;i<n;i++) {
			w[i] = sc.nextInt();
		}
		int[][][][] dp = new int[2][2][n][m+1]; //first, before, ind, count
		for(int i=0;i<2;i++) {
			for(int j=0;j<2;j++) {
				for(int k=0;k<n;k++) {
					Arrays.fill(dp[i][j][k], -(1<<29));
				}
			}
		}
		dp[0][0][0][0] = 0;
		dp[1][1][0][1] = 0;
		for(int i=0;i<n-1;i++) {
			for(int fir=0;fir<2;fir++) {
				for(int bef=0;bef<2;bef++) {
					for(int j=0;j<=m;j++) {
						if (dp[fir][bef][i][j] == -(1<<29)) {
							continue;
						}
						//取る
						if (j < m) {
							int nj = dp[fir][bef][i][j] + (bef == 1 ? w[i] : 0) + (i == n - 2 && fir == 1 ? w[n-1] : 0);
//							System.out.println(fir + "," + bef + "," + i + "," + j + ":" + dp[fir][bef][i][j] + "->" + fir + "," + 1 + "," + (i+1) + "," + (j+1) + ":" + nj);
							dp[fir][1][i+1][j+1] = Math.max(dp[fir][1][i+1][j+1], nj);
						}
						//取らない
						dp[fir][0][i+1][j] = Math.max(dp[fir][0][i+1][j], dp[fir][bef][i][j]);
//						System.out.println(fir + "," + bef + "," + i + "," + j + ":" + dp[fir][bef][i][j] + "->" + fir + "," + 0 + "," + (i+1) + "," + j + ":" + dp[fir][bef][i][j]);
					}
				}
			}
		}
		int ans = Integer.MIN_VALUE;
		for(int fir=0;fir<2;fir++) {
			for(int bef=0;bef<2;bef++) {
				ans = Math.max(ans, dp[fir][bef][n-1][m]);
			}
		}
		System.out.println(ans);
	}

}
0