結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 11:23:56
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,957 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 121,600 KB
最終ジャッジ日時 2024-11-15 19:31:06
合計ジャッジ時間 18,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,392 KB
testcase_01 AC 81 ms
75,136 KB
testcase_02 AC 77 ms
75,292 KB
testcase_03 AC 77 ms
75,412 KB
testcase_04 AC 1,831 ms
121,600 KB
testcase_05 AC 203 ms
78,208 KB
testcase_06 AC 1,876 ms
114,304 KB
testcase_07 AC 770 ms
82,688 KB
testcase_08 AC 1,933 ms
115,968 KB
testcase_09 AC 1,094 ms
88,192 KB
testcase_10 AC 1,957 ms
116,608 KB
testcase_11 AC 1,104 ms
87,936 KB
testcase_12 AC 80 ms
76,556 KB
testcase_13 AC 90 ms
78,208 KB
testcase_14 AC 78 ms
76,544 KB
testcase_15 AC 90 ms
77,952 KB
testcase_16 AC 80 ms
75,520 KB
testcase_17 AC 79 ms
75,392 KB
testcase_18 AC 78 ms
75,392 KB
testcase_19 AC 79 ms
75,264 KB
testcase_20 AC 77 ms
75,264 KB
testcase_21 AC 76 ms
75,392 KB
testcase_22 AC 75 ms
75,136 KB
testcase_23 AC 76 ms
75,264 KB
testcase_24 AC 75 ms
75,392 KB
testcase_25 AC 75 ms
75,392 KB
testcase_26 AC 77 ms
75,412 KB
testcase_27 AC 76 ms
75,392 KB
testcase_28 AC 76 ms
75,264 KB
testcase_29 AC 75 ms
75,520 KB
testcase_30 AC 76 ms
75,392 KB
testcase_31 AC 76 ms
75,392 KB
testcase_32 AC 433 ms
79,104 KB
testcase_33 AC 1,366 ms
99,456 KB
testcase_34 AC 1,474 ms
106,496 KB
testcase_35 AC 97 ms
77,836 KB
testcase_36 AC 590 ms
81,536 KB
testcase_37 AC 97 ms
77,568 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))if(n>m)*(m>0)else[0,sum(w)][m>0]
0