結果

問題 No.527 ナップサック容量問題
ユーザー 6soukiti296soukiti29
提出日時 2017-06-21 22:59:07
言語 Nim
(2.0.2)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 66,892 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 01:27:57
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 68 ms
5,376 KB
testcase_06 AC 111 ms
5,376 KB
testcase_07 AC 106 ms
5,376 KB
testcase_08 AC 51 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 91 ms
5,376 KB
testcase_11 AC 63 ms
5,376 KB
testcase_12 AC 61 ms
5,376 KB
testcase_13 AC 145 ms
5,376 KB
testcase_14 AC 75 ms
5,376 KB
testcase_15 AC 91 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 68 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 43 ms
5,376 KB
testcase_21 AC 101 ms
5,376 KB
testcase_22 AC 119 ms
5,376 KB
testcase_23 AC 87 ms
5,376 KB
testcase_24 AC 36 ms
5,376 KB
testcase_25 AC 69 ms
5,376 KB
testcase_26 AC 81 ms
5,376 KB
testcase_27 AC 90 ms
5,376 KB
testcase_28 AC 78 ms
5,376 KB
testcase_29 AC 140 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 78 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 63 ms
5,376 KB
testcase_38 AC 43 ms
5,376 KB
testcase_39 AC 64 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils,strutils,algorithm

let N = readline(stdin).parseInt
type
    item = tuple[value : int, weight : int]
var
    nimotu : item
    weights = newSeqWith(1,0)
    A : array[1_000_000,int]
    w2 : seq[int]
for n in 0..<N:
    let L = readline(stdin).split.map(parseInt)
    nimotu = (value : L[0],weight : L[1])
    w2 = @[]
    for w in reversed(weights):
        if A[nimotu.weight + w] == 0:
            w2.add(nimotu.weight + w)
            A[nimotu.weight + w] = nimotu.value + A[w]
        elif A[nimotu.weight + w] < nimotu.value + A[w]:
            A[nimotu.weight + w] = nimotu.value + A[w]
    for wadd in w2:
        weights.insert(wadd,weights.lowerBound(wadd))
let V = readline(stdin).parseInt
var l,r : int
for i,num in A:
    if l == 0 and num == V:
        l = i
    if num > V:
        r = i - 1
        break
echo l
if r > 0:
    echo r
else:
    echo "inf"
0