結果

問題 No.324 落ちてた閉路グラフ
ユーザー 37zigen37zigen
提出日時 2016-03-21 23:47:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,344 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 196,128 KB
最終ジャッジ日時 2024-10-01 12:31:24
合計ジャッジ時間 15,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,408 KB
testcase_01 AC 135 ms
41,424 KB
testcase_02 AC 134 ms
41,440 KB
testcase_03 AC 135 ms
41,384 KB
testcase_04 AC 656 ms
111,360 KB
testcase_05 AC 901 ms
196,128 KB
testcase_06 AC 571 ms
87,992 KB
testcase_07 AC 856 ms
195,636 KB
testcase_08 AC 592 ms
91,604 KB
testcase_09 AC 473 ms
63,508 KB
testcase_10 AC 587 ms
91,572 KB
testcase_11 AC 437 ms
63,476 KB
testcase_12 AC 206 ms
44,496 KB
testcase_13 AC 200 ms
43,220 KB
testcase_14 AC 348 ms
58,132 KB
testcase_15 WA -
testcase_16 AC 131 ms
43,076 KB
testcase_17 AC 132 ms
41,644 KB
testcase_18 AC 134 ms
41,512 KB
testcase_19 AC 137 ms
41,432 KB
testcase_20 AC 133 ms
41,324 KB
testcase_21 AC 135 ms
41,444 KB
testcase_22 WA -
testcase_23 AC 134 ms
41,536 KB
testcase_24 AC 134 ms
41,280 KB
testcase_25 AC 135 ms
41,588 KB
testcase_26 AC 130 ms
41,464 KB
testcase_27 AC 132 ms
41,232 KB
testcase_28 AC 132 ms
41,500 KB
testcase_29 AC 132 ms
41,100 KB
testcase_30 AC 132 ms
41,612 KB
testcase_31 AC 131 ms
41,272 KB
testcase_32 AC 775 ms
195,980 KB
testcase_33 AC 749 ms
195,508 KB
testcase_34 AC 607 ms
93,472 KB
testcase_35 AC 155 ms
43,576 KB
testcase_36 AC 397 ms
57,132 KB
testcase_37 AC 149 ms
43,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		int[] w=new int[n];
		for(int i=0;i<n;i++){
			w[i]=sc.nextInt();
		}
		int[][][][] dp=new int[2][2][m+1][n+1];

		for(int i=0;i<2;i++){
			for(int j=0;j<2;j++){
				for(int k=0;k<m+1;k++){
					for(int l=0;l<n;l++){
						dp[i][j][k][l]=-1000000;
					}
				}
			}
		}
		//n>=3
		for(int i=0;i<2;i++){//1番目の頂点を拾うかどうか
			for(int j=1;j<=n;j++){//j番目まで確定
				for(int k=0;k<=j&&k<=m;k++){//頂点数
					for(int l=0;l<2;l++){//i番目の頂点を拾うかどうか
						if(l==1&&i==0){
							//					1番目とi番目の頂点を拾う、拾わないの関係から、現在の頂点数に制約
							if(!(k<=j-1))
								continue;
							if(k==0)
								continue;
						}else if(l==1&&i==1){
							if(j==1&&k==1){
								dp[i][l][k][j]=0;
								continue;
							}else if(k<2){
								dp[i][l][k][j]=-10000000;
								continue;
							}
						}else if(l==0&&i==0){
							if(j==1){
								if(k>j-1)
									continue;
							}else if(k>j-2){
								continue;
							}
						}else if(l==0&&i==1){
							if(!(k<=j-1))
								continue;
							if(k==0)
								continue;
						}
						//					1番目の頂点での操作
						if(j==1){
							dp[i][l][k][j]=0;
						}else if(k==0){
							dp[i][l][k][j]=0;
	//	dp[1番目の頂点を拾うかどうか(i)][j番目の頂点を拾うかどうか(l)][頂点数k][jまで確定];
						}else if(l==0){
							dp[i][l][k][j]=Math.max(dp[i][0][k][j-1],dp[i][1][k][j-1]);
						}else if(l==1){
							dp[i][l][k][j]=Math.max(dp[i][1][k-1][j-1]+w[j-2],dp[i][0][k-1][j-1]);
						}

					}
				}
			}

		}

		dp[1][1][m][n]=dp[1][1][m][n]+w[n-1];
		int max=Math.max(dp[1][1][m][n],dp[1][0][m][n]);
		max=Math.max(max,dp[0][1][m][n]);
		max=Math.max(max, dp[0][0][m][n]);
		max=Math.max(max, dp[1][0][m][n]);

		System.out.println(max);



//		for(int i=0;i<2;i++){//1番目の頂点を拾うかどうか
//			for(int j=1;j<=n;j++){//j番目まで確定
//				for(int k=0;k<=j&&k<=m;k++){//頂点数
//					for(int l=0;l<2;l++){//i番目の頂点を拾うかどうか
//							System.err.println("dp["+i+"]["+l+"]["+k+"]["+j+"]="+dp[i][l][k][j]);
//					}
//				}

//			}

//		}
	}
}
0