結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,684 KB
testcase_01 AC 78 ms
75,532 KB
testcase_02 AC 78 ms
75,684 KB
testcase_03 AC 78 ms
75,424 KB
testcase_04 AC 2,032 ms
128,548 KB
testcase_05 AC 207 ms
78,504 KB
testcase_06 AC 2,053 ms
119,456 KB
testcase_07 AC 820 ms
84,484 KB
testcase_08 AC 2,086 ms
122,148 KB
testcase_09 AC 1,170 ms
89,872 KB
testcase_10 AC 2,097 ms
122,012 KB
testcase_11 AC 1,185 ms
89,340 KB
testcase_12 AC 82 ms
76,860 KB
testcase_13 AC 92 ms
78,276 KB
testcase_14 AC 81 ms
76,552 KB
testcase_15 AC 94 ms
78,212 KB
testcase_16 AC 79 ms
75,264 KB
testcase_17 AC 82 ms
75,808 KB
testcase_18 AC 82 ms
75,576 KB
testcase_19 AC 80 ms
75,396 KB
testcase_20 AC 83 ms
75,688 KB
testcase_21 AC 82 ms
75,808 KB
testcase_22 AC 80 ms
75,384 KB
testcase_23 AC 78 ms
75,684 KB
testcase_24 AC 77 ms
75,684 KB
testcase_25 AC 76 ms
75,308 KB
testcase_26 AC 77 ms
75,696 KB
testcase_27 AC 76 ms
75,432 KB
testcase_28 AC 76 ms
75,664 KB
testcase_29 AC 78 ms
75,684 KB
testcase_30 AC 78 ms
75,680 KB
testcase_31 AC 78 ms
75,524 KB
testcase_32 AC 455 ms
79,272 KB
testcase_33 AC 1,493 ms
102,568 KB
testcase_34 AC 1,615 ms
110,616 KB
testcase_35 AC 99 ms
77,888 KB
testcase_36 AC 627 ms
82,208 KB
testcase_37 AC 92 ms
77,948 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 (r,h),v in D.iteritems():
			for l in [0,1]:
				if 0<=r-l<n-1-i:
					k=(r-l,l);u=v+w[i]*h*l
					if k not in T or T[k]<u:T[k]=u
		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