結果

問題 No.324 落ちてた閉路グラフ
ユーザー ayame_pyayame_py
提出日時 2015-12-27 04:38:56
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 681 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 501,024 KB
最終ジャッジ日時 2024-09-19 07:20:49
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 12 ms
6,144 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8
n,m=map(int,raw_input().split())
w=map(int,raw_input().split())
# dp[最初に頂点を選んだか][直前の頂点を選んだか][現在の頂点番号][選択済みの頂点数]
dp=[[[[-int(1e10+7) for l in xrange(m+1)] for k in xrange(n)] for j in xrange(2)] for i in xrange(2)]
dp[0][0][0][0]=0
dp[1][1][0][1]=0
a=-int(1e9+7)
for i in range(2):
	for k in range(n-1):
		for l in range(m+1):
			# 選択しない場合
			dp[i][0][k+1][l]=max(dp[i][0][k][l],dp[i][1][k][l])
			# 選択する場合
			if l: dp[i][1][k+1][l]=max(dp[i][0][k][l-1],dp[i][1][k][l-1]+w[k])

a=max(a,dp[1][0][n-1][m])
a=max(a,dp[0][1][n-1][m])
a=max(a,dp[1][1][n-1][m]+w[n-1])
print a
0