結果

問題 No.324 落ちてた閉路グラフ
ユーザー ayame_pyayame_py
提出日時 2015-12-27 04:57:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,465 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 355,712 KB
最終ジャッジ日時 2024-11-15 19:37:55
合計ジャッジ時間 13,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,648 KB
testcase_01 AC 75 ms
75,520 KB
testcase_02 AC 77 ms
75,392 KB
testcase_03 AC 77 ms
75,392 KB
testcase_04 AC 549 ms
187,648 KB
testcase_05 AC 1,365 ms
355,712 KB
testcase_06 AC 607 ms
166,208 KB
testcase_07 AC 1,399 ms
331,776 KB
testcase_08 AC 607 ms
166,528 KB
testcase_09 AC 352 ms
118,656 KB
testcase_10 AC 539 ms
166,656 KB
testcase_11 AC 362 ms
118,784 KB
testcase_12 AC 91 ms
78,240 KB
testcase_13 AC 94 ms
78,208 KB
testcase_14 AC 214 ms
98,176 KB
testcase_15 AC 320 ms
118,912 KB
testcase_16 AC 76 ms
75,392 KB
testcase_17 AC 76 ms
75,392 KB
testcase_18 AC 77 ms
75,456 KB
testcase_19 AC 75 ms
75,400 KB
testcase_20 AC 74 ms
75,136 KB
testcase_21 AC 75 ms
75,392 KB
testcase_22 AC 75 ms
75,264 KB
testcase_23 AC 75 ms
75,392 KB
testcase_24 AC 75 ms
75,648 KB
testcase_25 AC 77 ms
75,264 KB
testcase_26 AC 75 ms
75,392 KB
testcase_27 AC 76 ms
75,264 KB
testcase_28 AC 74 ms
75,392 KB
testcase_29 AC 77 ms
75,392 KB
testcase_30 AC 75 ms
75,392 KB
testcase_31 AC 74 ms
75,520 KB
testcase_32 AC 1,465 ms
346,496 KB
testcase_33 AC 1,284 ms
301,312 KB
testcase_34 AC 591 ms
166,400 KB
testcase_35 AC 103 ms
78,976 KB
testcase_36 AC 210 ms
97,536 KB
testcase_37 AC 91 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8
import sys
n,m=map(int,raw_input().split())
w=map(int,raw_input().split())
# dp[最初に頂点を選んだか][直前の頂点を選んだか][現在の頂点番号][選択済みの頂点数]
dp=[[[[-int(1e10+7) for l in xrange(m+2)] 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][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