結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 01:57:44
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,004 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 76,444 KB
実行使用メモリ 121,636 KB
最終ジャッジ日時 2024-11-15 19:28:13
合計ジャッジ時間 20,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,280 KB
testcase_01 AC 78 ms
75,400 KB
testcase_02 AC 76 ms
75,292 KB
testcase_03 AC 77 ms
75,280 KB
testcase_04 AC 1,922 ms
121,636 KB
testcase_05 AC 201 ms
78,480 KB
testcase_06 AC 1,945 ms
114,688 KB
testcase_07 AC 808 ms
83,100 KB
testcase_08 AC 1,967 ms
116,352 KB
testcase_09 AC 1,131 ms
88,448 KB
testcase_10 AC 2,004 ms
116,608 KB
testcase_11 AC 1,161 ms
88,060 KB
testcase_12 AC 83 ms
76,856 KB
testcase_13 AC 97 ms
78,208 KB
testcase_14 AC 79 ms
76,664 KB
testcase_15 AC 93 ms
78,112 KB
testcase_16 AC 79 ms
75,664 KB
testcase_17 AC 76 ms
75,568 KB
testcase_18 AC 76 ms
75,648 KB
testcase_19 AC 77 ms
75,196 KB
testcase_20 AC 78 ms
75,648 KB
testcase_21 AC 77 ms
75,684 KB
testcase_22 AC 78 ms
75,580 KB
testcase_23 AC 78 ms
75,648 KB
testcase_24 AC 76 ms
75,136 KB
testcase_25 AC 76 ms
75,532 KB
testcase_26 AC 76 ms
75,264 KB
testcase_27 AC 77 ms
75,904 KB
testcase_28 AC 78 ms
75,648 KB
testcase_29 AC 77 ms
75,648 KB
testcase_30 AC 78 ms
75,264 KB
testcase_31 AC 77 ms
75,580 KB
testcase_32 AC 443 ms
79,616 KB
testcase_33 AC 1,455 ms
99,488 KB
testcase_34 AC 1,548 ms
106,280 KB
testcase_35 AC 96 ms
78,080 KB
testcase_36 AC 620 ms
81,836 KB
testcase_37 AC 89 ms
77,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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