結果

問題 No.37 遊園地のアトラクション
ユーザー むらためむらため
提出日時 2017-08-16 21:19:21
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 3,207 ms
コンパイル使用メモリ 66,696 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 02:45:23
合計ジャッジ時間 3,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 15 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 2 ms
6,940 KB
testcase_29 WA -
testcase_30 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 41) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated]
/home/judge/data/code/Main.nim(1, 41) Warning: imported and not used: 'future' [UnusedImport]
/home/judge/data/code/Main.nim(1, 48) Warning: imported and not used: 'macros' [UnusedImport]
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'algorithm' [UnusedImport]
/home/judge/data/code/Main.nim(1, 36) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,algorithm,math,future,macros
template get*():string = stdin.readLine().strip()
template `max=`*(x,y:typed):void = x = max(x,y)

let
  T = get().parseInt() # < 10000
  N = get().parseInt() # < 15
  C = get().split().map(parseInt) # < 100 # 残り時間
  V = get().split().map(parseInt) # < 500 # 満足度
# 二回目以降は v div 2
var dp = newSeqWith(N+1,newSeqWith(T+1,0)) # 残り時間 T
for i in 0..<N:
  var (cost,satis) = (C[i],V[i])
  var sumSatis = satis
  for t in 0..T: dp[i+1][t] = dp[i][t]
  while satis > 0:
    for t in cost..T:
      dp[i+1][t-cost] .max=  dp[i][t] + sumSatis
    satis = satis div 2
    cost = cost * 2
    sumSatis += satis
echo dp[^1][0]
0