結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 11:08:29
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 353 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 76,328 KB
実行使用メモリ 121,960 KB
最終ジャッジ日時 2024-09-16 07:21:11
合計ジャッジ時間 18,474 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,564 KB
testcase_01 AC 73 ms
75,548 KB
testcase_02 AC 72 ms
75,144 KB
testcase_03 AC 73 ms
75,556 KB
testcase_04 AC 1,712 ms
121,960 KB
testcase_05 AC 200 ms
78,196 KB
testcase_06 AC 1,713 ms
114,144 KB
testcase_07 AC 696 ms
83,104 KB
testcase_08 AC 1,777 ms
116,288 KB
testcase_09 AC 981 ms
87,960 KB
testcase_10 AC 1,755 ms
116,640 KB
testcase_11 AC 1,078 ms
87,896 KB
testcase_12 RE -
testcase_13 AC 87 ms
78,372 KB
testcase_14 RE -
testcase_15 AC 86 ms
78,080 KB
testcase_16 RE -
testcase_17 AC 73 ms
75,240 KB
testcase_18 AC 72 ms
75,140 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 72 ms
75,496 KB
testcase_22 RE -
testcase_23 AC 74 ms
75,408 KB
testcase_24 RE -
testcase_25 AC 73 ms
75,552 KB
testcase_26 AC 74 ms
75,540 KB
testcase_27 AC 72 ms
75,260 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 73 ms
75,272 KB
testcase_31 AC 69 ms
75,384 KB
testcase_32 AC 390 ms
79,464 KB
testcase_33 AC 1,277 ms
99,768 KB
testcase_34 AC 1,350 ms
106,556 KB
testcase_35 AC 89 ms
77,996 KB
testcase_36 AC 552 ms
81,536 KB
testcase_37 AC 86 ms
77,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=lambda:map(int,raw_input().split());n,m=I();w=I()
def f(s):
	D={(m-s,s):0}
	for i in xrange(n-1):
		T={}
		for (k,h),v in D.iteritems():
			for l in xrange(2):
				if 0<=k-l<n-1-i:
					nk=(k-l,l);nv=v+w[i]*h*l
					if nk not in T or T[nk]<nv:T[nk]=nv
		D=T
	return max(v+h*s*w[n-1]for(k,h),v in D.items())
print[[max(f(0),f(1)),sum(w)][m==n],0][m==0]
0