結果

問題 No.409 ダイエット
ユーザー 0w10w1
提出日時 2017-04-25 21:41:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 119,544 KB
最終ジャッジ日時 2024-06-26 10:16:41
合計ジャッジ時間 14,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
53,632 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 43 ms
53,888 KB
testcase_08 AC 45 ms
53,888 KB
testcase_09 AC 44 ms
54,016 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 44 ms
53,888 KB
testcase_12 AC 43 ms
54,144 KB
testcase_13 AC 43 ms
53,760 KB
testcase_14 AC 43 ms
53,760 KB
testcase_15 AC 44 ms
54,272 KB
testcase_16 AC 43 ms
53,888 KB
testcase_17 AC 44 ms
53,888 KB
testcase_18 AC 43 ms
54,272 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 44 ms
53,760 KB
testcase_21 AC 44 ms
53,760 KB
testcase_22 AC 44 ms
54,016 KB
testcase_23 AC 44 ms
54,016 KB
testcase_24 AC 43 ms
54,016 KB
testcase_25 AC 44 ms
53,632 KB
testcase_26 AC 43 ms
53,888 KB
testcase_27 AC 42 ms
53,632 KB
testcase_28 AC 42 ms
54,016 KB
testcase_29 AC 43 ms
53,832 KB
testcase_30 AC 43 ms
53,888 KB
testcase_31 AC 43 ms
54,144 KB
testcase_32 AC 44 ms
53,888 KB
testcase_33 AC 46 ms
54,272 KB
testcase_34 AC 43 ms
54,144 KB
testcase_35 AC 91 ms
76,928 KB
testcase_36 AC 90 ms
76,996 KB
testcase_37 AC 88 ms
76,984 KB
testcase_38 AC 90 ms
76,928 KB
testcase_39 AC 90 ms
77,056 KB
testcase_40 AC 88 ms
77,260 KB
testcase_41 AC 86 ms
77,296 KB
testcase_42 AC 91 ms
77,056 KB
testcase_43 AC 73 ms
74,240 KB
testcase_44 AC 88 ms
77,140 KB
testcase_45 AC 84 ms
77,056 KB
testcase_46 AC 84 ms
77,056 KB
testcase_47 AC 93 ms
77,480 KB
testcase_48 AC 91 ms
77,424 KB
testcase_49 AC 88 ms
76,912 KB
testcase_50 AC 91 ms
76,964 KB
testcase_51 AC 92 ms
77,136 KB
testcase_52 AC 83 ms
77,056 KB
testcase_53 AC 85 ms
77,056 KB
testcase_54 AC 88 ms
76,928 KB
testcase_55 AC 203 ms
96,680 KB
testcase_56 AC 175 ms
119,544 KB
testcase_57 AC 266 ms
117,120 KB
testcase_58 AC 173 ms
94,080 KB
testcase_59 AC 213 ms
102,528 KB
testcase_60 AC 186 ms
92,416 KB
testcase_61 AC 241 ms
114,560 KB
testcase_62 AC 247 ms
119,080 KB
testcase_63 AC 254 ms
114,304 KB
testcase_64 AC 189 ms
96,552 KB
testcase_65 AC 276 ms
114,864 KB
testcase_66 AC 261 ms
119,420 KB
testcase_67 AC 224 ms
110,208 KB
testcase_68 AC 213 ms
102,652 KB
testcase_69 AC 257 ms
114,304 KB
testcase_70 AC 247 ms
103,700 KB
testcase_71 AC 177 ms
96,000 KB
testcase_72 AC 280 ms
113,036 KB
testcase_73 AC 251 ms
107,420 KB
testcase_74 AC 197 ms
101,376 KB
testcase_75 AC 279 ms
107,560 KB
testcase_76 AC 212 ms
107,892 KB
testcase_77 AC 219 ms
95,488 KB
testcase_78 AC 174 ms
98,200 KB
testcase_79 AC 190 ms
92,928 KB
testcase_80 AC 264 ms
110,356 KB
testcase_81 AC 278 ms
107,752 KB
testcase_82 AC 218 ms
108,032 KB
testcase_83 AC 269 ms
108,288 KB
testcase_84 AC 192 ms
104,448 KB
testcase_85 AC 102 ms
77,388 KB
testcase_86 AC 214 ms
101,856 KB
testcase_87 AC 246 ms
103,676 KB
testcase_88 AC 169 ms
91,136 KB
testcase_89 AC 268 ms
107,904 KB
testcase_90 AC 179 ms
89,412 KB
testcase_91 AC 285 ms
111,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, A, B, W = map( int, input().split() )
D = list( map( int, input().split() ) )
dp = [ 0 for i in range( N + 1 ) ]

def get_cost( x, rb ):
  d = rb - x - 1
  return dp[ x ] + d * ( d + 1 ) // 2 * B - d * A + D[ rb - 1 ]

dq = deque()
dp[ 0 ] = W
dq.append( [ 0, 1, N ] )
for i in range( 1, N + 1 ):
  while dq[ 0 ][ 2 ] < i:
    dq.popleft()
  dp[ i ] = get_cost( dq[ 0 ][ 0 ], i )
  while len( dq ):
    x, lb, rb = dq[ len( dq ) - 1 ]
    if get_cost( x, lb ) >= get_cost( i, lb ):
      dq.pop()
      if len( dq ):
        dq[ len( dq ) - 1 ][ 2 ] = N
    else:
      break
  best = -1
  x, lb, rb = dq[ len( dq ) - 1 ][ 0 ], i + 1, N
  while lb <= rb:
    mid = lb + rb >> 1
    if get_cost( x, mid ) >= get_cost( i, mid ):
      best = mid
      rb = mid - 1
    else:
      lb = mid + 1
  if best == -1: continue
  dq[ len( dq ) - 1 ][ 2 ] = best - 1
  dq.append( [ i, best, N ] )

print( min( dp[ i ] + ( N - i ) * ( N - i + 1 ) // 2 * B - ( N - i ) * A for i in range( N + 1 ) ) )
0