結果

問題 No.409 ダイエット
ユーザー jj
提出日時 2016-08-06 00:50:14
言語 Fortran
(gFortran 14.2.0)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 33,280 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 00:28:24
合計ジャッジ時間 31,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 34 OLE * 21 -- * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::N,A,B,W,i,str,str_max,tmp,uplimit
  integer*8,allocatable::D(:)
  integer*8,allocatable::dp(:)

  read *, N,A,B,W
  allocate(D(N))
  allocate(dp(0:N))
  read *, D

  dp(0) = W

  dp(1) = W - A + B*1
  dp(0) = W + D(1)
  str_max = 1

  do i=2,N
     print *, str_max,dp
     tmp = MINVAL(dp(0:str_max)) + D(i)
     if(tmp.eq.dp(0)) then
        !tabeta houga kanarazu yoi
        str_max = 0
     end if

     !str ha tamesugi nai
     do str=str_max+1,1,-1
        dp(str) = dp(str-1) - A + B*str
     end do
     dp(0) = tmp
     str_max = str_max + 1
  end do

  print '(i0)', MINVAL(dp(0:str_max))

end program
0