結果

問題 No.324 落ちてた閉路グラフ
ユーザー TawaraTawara
提出日時 2015-12-17 11:52:21
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,921 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 133,248 KB
最終ジャッジ日時 2024-09-16 07:24:59
合計ジャッジ時間 26,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
75,136 KB
testcase_01 AC 87 ms
75,264 KB
testcase_02 AC 88 ms
75,264 KB
testcase_03 AC 87 ms
75,648 KB
testcase_04 AC 2,921 ms
133,248 KB
testcase_05 AC 269 ms
78,592 KB
testcase_06 AC 2,726 ms
124,416 KB
testcase_07 AC 1,112 ms
84,864 KB
testcase_08 AC 2,817 ms
126,336 KB
testcase_09 AC 1,540 ms
90,624 KB
testcase_10 AC 2,862 ms
125,952 KB
testcase_11 AC 1,579 ms
90,368 KB
testcase_12 AC 90 ms
76,928 KB
testcase_13 AC 101 ms
78,080 KB
testcase_14 AC 88 ms
76,928 KB
testcase_15 AC 100 ms
78,208 KB
testcase_16 AC 89 ms
75,264 KB
testcase_17 AC 87 ms
75,648 KB
testcase_18 AC 88 ms
75,648 KB
testcase_19 AC 88 ms
75,264 KB
testcase_20 AC 88 ms
75,264 KB
testcase_21 AC 88 ms
75,520 KB
testcase_22 AC 88 ms
75,136 KB
testcase_23 AC 87 ms
75,264 KB
testcase_24 AC 87 ms
75,648 KB
testcase_25 AC 88 ms
75,136 KB
testcase_26 AC 87 ms
75,648 KB
testcase_27 AC 88 ms
75,392 KB
testcase_28 AC 88 ms
75,136 KB
testcase_29 AC 88 ms
75,648 KB
testcase_30 AC 86 ms
75,392 KB
testcase_31 AC 86 ms
75,264 KB
testcase_32 AC 612 ms
79,744 KB
testcase_33 AC 2,039 ms
104,832 KB
testcase_34 AC 2,180 ms
113,792 KB
testcase_35 AC 107 ms
77,952 KB
testcase_36 AC 839 ms
82,560 KB
testcase_37 AC 99 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=lambda:map(int,raw_input().split());n,m=I();w=I()
def f(s):
	D={(s,s):0}
	for i in xrange(n-1):
		T={}
		for(t,h)in D:
			for a in[0,1]:
				if i-n+1<t+a-m<=0:
					k=(t+a,a);u=D[(t,h)]+w[i]*h*a
					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