結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 11:05:11
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 349 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 76,912 KB
実行使用メモリ 128,596 KB
最終ジャッジ日時 2024-09-16 07:20:10
合計ジャッジ時間 17,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,776 KB
testcase_01 AC 74 ms
75,304 KB
testcase_02 AC 72 ms
75,684 KB
testcase_03 AC 70 ms
75,520 KB
testcase_04 AC 1,810 ms
128,596 KB
testcase_05 AC 198 ms
78,224 KB
testcase_06 AC 1,864 ms
119,288 KB
testcase_07 AC 791 ms
84,224 KB
testcase_08 AC 1,845 ms
122,240 KB
testcase_09 AC 1,119 ms
89,728 KB
testcase_10 AC 1,844 ms
122,112 KB
testcase_11 AC 1,074 ms
89,336 KB
testcase_12 RE -
testcase_13 AC 88 ms
78,080 KB
testcase_14 RE -
testcase_15 AC 86 ms
78,208 KB
testcase_16 RE -
testcase_17 AC 73 ms
75,248 KB
testcase_18 AC 74 ms
75,252 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 72 ms
75,264 KB
testcase_22 RE -
testcase_23 AC 75 ms
75,556 KB
testcase_24 RE -
testcase_25 AC 73 ms
75,280 KB
testcase_26 AC 74 ms
75,652 KB
testcase_27 AC 76 ms
75,136 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 73 ms
75,272 KB
testcase_31 AC 72 ms
75,392 KB
testcase_32 AC 412 ms
79,492 KB
testcase_33 AC 1,360 ms
102,516 KB
testcase_34 AC 1,462 ms
110,504 KB
testcase_35 AC 92 ms
77,824 KB
testcase_36 AC 590 ms
82,312 KB
testcase_37 AC 84 ms
77,316 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 [0,1]:
				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