結果

問題 No.409 ダイエット
ユーザー cielciel
提出日時 2016-04-25 21:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 123,472 KB
最終ジャッジ日時 2024-06-26 09:32:53
合計ジャッジ時間 15,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 40 ms
53,120 KB
testcase_02 AC 41 ms
52,992 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 41 ms
52,992 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 40 ms
52,712 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 42 ms
52,736 KB
testcase_12 AC 41 ms
52,864 KB
testcase_13 AC 39 ms
52,736 KB
testcase_14 AC 39 ms
52,736 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 40 ms
52,480 KB
testcase_17 AC 40 ms
52,608 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 40 ms
52,736 KB
testcase_21 AC 42 ms
52,480 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 40 ms
52,480 KB
testcase_24 AC 41 ms
52,992 KB
testcase_25 AC 40 ms
52,608 KB
testcase_26 AC 40 ms
52,460 KB
testcase_27 AC 41 ms
52,864 KB
testcase_28 AC 40 ms
52,480 KB
testcase_29 AC 42 ms
52,736 KB
testcase_30 AC 40 ms
52,736 KB
testcase_31 AC 40 ms
52,736 KB
testcase_32 AC 41 ms
52,352 KB
testcase_33 AC 40 ms
52,864 KB
testcase_34 AC 40 ms
52,864 KB
testcase_35 AC 101 ms
77,004 KB
testcase_36 AC 108 ms
77,556 KB
testcase_37 AC 112 ms
77,332 KB
testcase_38 AC 104 ms
76,712 KB
testcase_39 AC 101 ms
76,800 KB
testcase_40 AC 108 ms
77,104 KB
testcase_41 AC 94 ms
76,672 KB
testcase_42 AC 102 ms
77,024 KB
testcase_43 AC 87 ms
76,704 KB
testcase_44 AC 109 ms
76,884 KB
testcase_45 AC 111 ms
77,408 KB
testcase_46 AC 99 ms
76,888 KB
testcase_47 AC 103 ms
76,464 KB
testcase_48 AC 100 ms
77,060 KB
testcase_49 AC 94 ms
77,140 KB
testcase_50 AC 99 ms
77,192 KB
testcase_51 AC 112 ms
77,808 KB
testcase_52 AC 100 ms
76,648 KB
testcase_53 AC 101 ms
76,792 KB
testcase_54 AC 100 ms
77,156 KB
testcase_55 AC 201 ms
96,836 KB
testcase_56 AC 142 ms
105,856 KB
testcase_57 AC 311 ms
123,472 KB
testcase_58 AC 200 ms
95,124 KB
testcase_59 AC 259 ms
96,976 KB
testcase_60 AC 205 ms
92,484 KB
testcase_61 AC 285 ms
114,184 KB
testcase_62 AC 298 ms
121,744 KB
testcase_63 AC 286 ms
111,100 KB
testcase_64 AC 222 ms
95,024 KB
testcase_65 AC 277 ms
102,528 KB
testcase_66 AC 317 ms
116,504 KB
testcase_67 AC 266 ms
109,336 KB
testcase_68 AC 247 ms
96,096 KB
testcase_69 AC 288 ms
108,344 KB
testcase_70 AC 298 ms
113,196 KB
testcase_71 AC 203 ms
94,784 KB
testcase_72 AC 320 ms
122,676 KB
testcase_73 AC 324 ms
107,088 KB
testcase_74 AC 225 ms
102,032 KB
testcase_75 AC 291 ms
109,328 KB
testcase_76 AC 252 ms
108,008 KB
testcase_77 AC 223 ms
89,736 KB
testcase_78 AC 205 ms
99,176 KB
testcase_79 AC 206 ms
92,924 KB
testcase_80 AC 310 ms
118,156 KB
testcase_81 AC 305 ms
108,528 KB
testcase_82 AC 255 ms
105,572 KB
testcase_83 AC 269 ms
106,560 KB
testcase_84 AC 251 ms
95,664 KB
testcase_85 AC 148 ms
80,460 KB
testcase_86 AC 265 ms
94,660 KB
testcase_87 AC 281 ms
112,568 KB
testcase_88 AC 210 ms
87,840 KB
testcase_89 AC 204 ms
98,304 KB
testcase_90 AC 181 ms
85,120 KB
testcase_91 AC 213 ms
100,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
#This code does not check the correctness of the algorithm.

import sys
if sys.version_info[0]>=3: raw_input=input

#http://stackoverflow.com/questions/4544630/automatically-growing-lists-in-python
class GrowingList(list):
	def __init__(self,val=None):
		self.val=val
	def __getitem__(self, index):
		if index >= len(self):
			return self.val
		return list.__getitem__(self, index)
	def __setitem__(self, index, value):
		if index >= len(self):
			self.extend([self.val for _ in range(index + 1 - len(self))])
		list.__setitem__(self, index, value)

def is_minimam(a1,b1,a2,b2,a3,b3):
	return (a2-a1)*(b3-b2)>=(b2-b1)*(a3-a2)

def is_maximam(a1,b1,a2,b2,a3,b3):
	return is_minimam(-a1,-b1,-a2,-b2,-a3,-b3)

def check(l1,l2,l3):
	return is_minimam(l1[0],l1[1],l2[0],l2[1],l3[0],l3[1])

def calc(l,now):
	return l[0]*now+l[1]

class ConvexHullTrick:
	def __init__(self):
		self.deque=GrowingList([0,0])
		self.s=0
		self.t=0
	def add(self,a,b):
		l=[a,b]
		while self.s+1<self.t and check(self.deque[self.t-2],self.deque[self.t-1],l):
			self.t-=1
		self.deque[self.t]=l
		self.t+=1
	def get(self,now):
		while self.s+1<self.t and calc(self.deque[self.s],now)>=calc(self.deque[self.s+1],now):
			self.s+=1
		return calc(self.deque[self.s],now)

n,a,b,w=map(int,raw_input().split())
deq=ConvexHullTrick()
z = w + 0 * a + b * 0 * (0 - 1) // 2
deq.add( - 0 * b, z)
r = z - a * (n - 0) + b * (n - 0) * (n - 0 + 1) // 2
for i,e in enumerate(raw_input().split()):
	z = int(e) - i * a + ( b * i * (i + 1)) // 2 + deq.get(i)
	deq.add( - (i + 1) * b , z + (i + 1) * a + ( b * (i + 1) * i) // 2)
	r = min(r,z - a * (n -(i+1)) + b * (n - (i+1)) * (n - (i+1) + 1) // 2)
print(r)
0