結果

問題 No.324 落ちてた閉路グラフ
ユーザー 37zigen37zigen
提出日時 2016-03-21 12:46:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,501 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 80,124 KB
実行使用メモリ 206,952 KB
最終ジャッジ日時 2024-10-01 12:21:05
合計ジャッジ時間 15,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,208 KB
testcase_01 AC 129 ms
53,988 KB
testcase_02 AC 137 ms
53,788 KB
testcase_03 AC 142 ms
54,228 KB
testcase_04 AC 591 ms
124,308 KB
testcase_05 AC 1,122 ms
206,952 KB
testcase_06 WA -
testcase_07 AC 1,046 ms
206,580 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 423 ms
72,852 KB
testcase_12 RE -
testcase_13 AC 210 ms
56,992 KB
testcase_14 AC 314 ms
68,180 KB
testcase_15 AC 347 ms
77,544 KB
testcase_16 RE -
testcase_17 AC 142 ms
54,276 KB
testcase_18 AC 147 ms
54,136 KB
testcase_19 AC 132 ms
53,276 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 AC 152 ms
54,188 KB
testcase_23 WA -
testcase_24 RE -
testcase_25 AC 147 ms
54,316 KB
testcase_26 AC 160 ms
53,864 KB
testcase_27 WA -
testcase_28 AC 157 ms
54,288 KB
testcase_29 RE -
testcase_30 AC 148 ms
54,148 KB
testcase_31 AC 143 ms
54,168 KB
testcase_32 AC 1,084 ms
205,996 KB
testcase_33 AC 995 ms
206,476 KB
testcase_34 WA -
testcase_35 AC 162 ms
54,868 KB
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Date;
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();//m頂点の誘導部分グラフ
		int[] w=new int[n];
		for(int i=0;i<n;i++){
			w[i]=sc.nextInt();
		}
		long t=new Date().getTime();
		int inf=-1000000;
		System.err.println(new Date().getTime()-t+"ms");
		int[][][][] dp=new int[2][2][m+1][n+1];
		System.err.println(new Date().getTime()-t+"ms");
		//dp[0番目の頂点を拾ったかどうか0:拾わず/1:拾った][i番目まで確定][頂点数][i番目の頂点を拾ったか(0:拾わず/1:拾った)]=その時点での最大価値
		for(int i=0;i<2;i++){//2*n*k*l=2*6*3*2=72
			for(int l=0;l<2;l++){
				for(int k=0;k<=m;k++){
					for(int j=1;j<n;j++){
						dp[i][l][k][j]=inf;
					}
				}
			}
		}
		System.err.println(new Date().getTime()-t+"ms");
		dp[0][0][0][0]=0;
		dp[1][1][1][0]=0;
		dp[0][0][0][1]=0;
		dp[1][1][1][1]=0;
		for(int i=0;i<2;i++){
			for(int j=2;j<=n;j++){
				for(int k=0;k<=m;k++){
					for(int l=0;l<2;l++){
						if(l==0)
							dp[i][l][k][j]=Math.max(dp[i][0][k][j-1], dp[i][1][k][j-1]);
						if(l==1&&k>=1){
							dp[i][l][k][j]=Math.max(dp[i][0][k-1][j-1], dp[i][1][k-1][j-1]+w[j-2]);
						}
					}
				}
			}
		}
		int max;
		max=Math.max(dp[0][0][m][n],dp[0][1][m][n]);
		max=Math.max(dp[1][0][m][n],dp[1][1][m][n]+w[n-1]);
		System.out.println(max);
		System.err.println(new Date().getTime()-t+"ms");
	}
}
0