結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 01:48:29
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 487 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 121,600 KB
最終ジャッジ日時 2024-09-16 06:49:46
合計ジャッジ時間 18,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,776 KB
testcase_01 AC 86 ms
75,520 KB
testcase_02 AC 86 ms
75,552 KB
testcase_03 AC 87 ms
75,520 KB
testcase_04 AC 1,921 ms
121,600 KB
testcase_05 AC 205 ms
78,208 KB
testcase_06 AC 1,933 ms
114,488 KB
testcase_07 AC 806 ms
83,584 KB
testcase_08 AC 1,966 ms
116,792 KB
testcase_09 AC 1,115 ms
88,448 KB
testcase_10 AC 1,998 ms
116,912 KB
testcase_11 AC 1,141 ms
87,808 KB
testcase_12 RE -
testcase_13 AC 93 ms
78,208 KB
testcase_14 RE -
testcase_15 AC 97 ms
78,208 KB
testcase_16 RE -
testcase_17 AC 79 ms
75,648 KB
testcase_18 AC 77 ms
75,648 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 80 ms
75,776 KB
testcase_22 RE -
testcase_23 AC 82 ms
75,136 KB
testcase_24 RE -
testcase_25 AC 80 ms
75,264 KB
testcase_26 AC 82 ms
75,776 KB
testcase_27 AC 79 ms
75,448 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 77 ms
75,428 KB
testcase_31 AC 77 ms
75,520 KB
testcase_32 AC 444 ms
79,232 KB
testcase_33 AC 1,427 ms
99,612 KB
testcase_34 AC 1,526 ms
105,984 KB
testcase_35 AC 99 ms
77,952 KB
testcase_36 AC 612 ms
81,920 KB
testcase_37 AC 91 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,raw_input().split())
w = map(int,raw_input().split())
def solve(start):
	dp = {(m-start,start):0}
	for i in xrange(n-1):
		tmp_dp = dict()
		for (k,h),v in dp.iteritems():
			for nxt in xrange(2):
				if 0 <= k-nxt < n-1-i:
					nk = (k-nxt,nxt)
					nv =  v + (w[i] if h*nxt == 1 else 0)
					if nk not in tmp_dp or tmp_dp[nk] < nv:
						tmp_dp[nk] = nv
		dp = tmp_dp
	return max(v + (w[n-1] if h*start else 0) for (k,h),v in dp.iteritems())
print max(solve(0), solve(1))
0