結果

問題 No.527 ナップサック容量問題
ユーザー t8m8⛄️t8m8⛄️
提出日時 2017-06-09 23:08:58
言語 Nim
(2.0.2)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 3,663 ms
コンパイル使用メモリ 66,396 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-06-30 01:18:47
合計ジャッジ時間 6,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,144 KB
testcase_01 AC 8 ms
6,912 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 8 ms
6,912 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 55 ms
35,044 KB
testcase_06 AC 108 ms
70,528 KB
testcase_07 AC 87 ms
57,088 KB
testcase_08 AC 49 ms
30,464 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 110 ms
71,296 KB
testcase_11 AC 79 ms
50,944 KB
testcase_12 AC 59 ms
37,504 KB
testcase_13 AC 111 ms
72,832 KB
testcase_14 AC 44 ms
28,288 KB
testcase_15 AC 67 ms
43,008 KB
testcase_16 AC 8 ms
6,912 KB
testcase_17 AC 56 ms
35,968 KB
testcase_18 AC 62 ms
40,704 KB
testcase_19 AC 9 ms
7,680 KB
testcase_20 AC 48 ms
29,696 KB
testcase_21 AC 126 ms
82,304 KB
testcase_22 AC 86 ms
55,552 KB
testcase_23 AC 122 ms
79,872 KB
testcase_24 AC 29 ms
18,688 KB
testcase_25 AC 84 ms
54,016 KB
testcase_26 AC 74 ms
48,512 KB
testcase_27 AC 77 ms
49,280 KB
testcase_28 AC 68 ms
43,008 KB
testcase_29 AC 122 ms
81,408 KB
testcase_30 AC 14 ms
10,752 KB
testcase_31 AC 58 ms
36,736 KB
testcase_32 AC 70 ms
44,544 KB
testcase_33 AC 61 ms
38,272 KB
testcase_34 AC 72 ms
46,336 KB
testcase_35 AC 74 ms
46,336 KB
testcase_36 AC 6 ms
6,144 KB
testcase_37 AC 53 ms
35,200 KB
testcase_38 AC 66 ms
43,740 KB
testcase_39 AC 64 ms
40,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(3, 39) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated]
/home/judge/data/code/Main.nim(3, 39) Warning: imported and not used: 'future' [UnusedImport]
/home/judge/data/code/Main.nim(3, 28) Warning: imported and not used: 'algorithm' [UnusedImport]

ソースコード

diff #

{.warning[SmallLshouldNotBeUsed]: off.}

import strutils, sequtils, algorithm, future

proc f(m, vm: int, dp: seq[seq[int]]): bool =
  result = dp[0][m] < vm

proc g(m, vm: int, dp: seq[seq[int]]): bool =
  result = dp[0][m] <= vm

when isMainModule:
  var
    n = stdin.readLine.parseInt
    v = newSeq[int](n)
    w = newSeq[int](n)

  for i in 0..<n:
    var t = stdin.readLine.split.map(parseInt)
    (v[i], w[i]) = (t[0], t[1])

  var
    vm = stdin.readLine.parseInt

  var
    W = 100001
    dp = newSeqWith(n+1, newSeq[int](W+1))
  for i in countDown(n-1, 0):
    for j in 0..W:
      if j < w[i]:
        dp[i][j] = dp[i+1][j]
      else:
        dp[i][j] = max(dp[i+1][j], dp[i+1][j-w[i]] + v[i])

  var (l, r) = (-1, W)
  while r - l > 1:
    var m = (l + r) div 2
    if f(m, vm, dp): l = m
    else: r = m

  var a = -1
  for i in max(1, l-5)..min(l+5, W-1):
    if not f(i, vm, dp):
      a = i
      break
  echo a

  (l, r) = (-1, W)
  while r - l > 1:
    var m = (l + r) div 2
    if g(m, vm, dp): l = m
    else: r = m

  var b = l-5
  for i in max(1, l-5)..min(l+5, W-1):
    if g(i, vm, dp):
      b = i
    else:
      break
  if not g(b+1, vm, dp):
    echo b
  else:
    echo "inf"
0