結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 01:52:14
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 525 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 76,176 KB
実行使用メモリ 121,148 KB
最終ジャッジ日時 2024-09-16 06:51:13
合計ジャッジ時間 17,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,264 KB
testcase_01 AC 72 ms
75,300 KB
testcase_02 AC 69 ms
75,156 KB
testcase_03 AC 69 ms
75,304 KB
testcase_04 AC 1,643 ms
121,148 KB
testcase_05 AC 183 ms
78,076 KB
testcase_06 AC 1,771 ms
114,040 KB
testcase_07 AC 693 ms
83,116 KB
testcase_08 AC 1,745 ms
116,376 KB
testcase_09 AC 975 ms
88,204 KB
testcase_10 AC 1,791 ms
116,772 KB
testcase_11 AC 1,006 ms
88,000 KB
testcase_12 AC 69 ms
75,396 KB
testcase_13 AC 79 ms
78,084 KB
testcase_14 RE -
testcase_15 AC 84 ms
77,992 KB
testcase_16 AC 71 ms
75,300 KB
testcase_17 AC 67 ms
75,532 KB
testcase_18 AC 67 ms
75,136 KB
testcase_19 RE -
testcase_20 AC 69 ms
75,552 KB
testcase_21 AC 70 ms
75,412 KB
testcase_22 RE -
testcase_23 AC 70 ms
75,300 KB
testcase_24 AC 68 ms
75,400 KB
testcase_25 AC 72 ms
75,464 KB
testcase_26 AC 73 ms
75,296 KB
testcase_27 AC 72 ms
75,660 KB
testcase_28 RE -
testcase_29 AC 68 ms
75,156 KB
testcase_30 AC 69 ms
75,668 KB
testcase_31 AC 70 ms
75,148 KB
testcase_32 AC 390 ms
79,260 KB
testcase_33 AC 1,237 ms
99,348 KB
testcase_34 AC 1,366 ms
105,500 KB
testcase_35 AC 89 ms
78,008 KB
testcase_36 AC 543 ms
80,936 KB
testcase_37 AC 81 ms
77,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,raw_input().split())
if n <= 1 or m == 0:
	print 0
	quit()
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