結果

問題 No.626 Randomized 01 Knapsack
ユーザー ミドリムシミドリムシ
提出日時 2017-12-15 21:21:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 72,448 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-05-09 00:23:19
合計ジャッジ時間 8,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
120,704 KB
testcase_01 AC 88 ms
120,704 KB
testcase_02 AC 88 ms
120,704 KB
testcase_03 AC 88 ms
120,832 KB
testcase_04 WA -
testcase_05 AC 88 ms
120,704 KB
testcase_06 AC 102 ms
120,704 KB
testcase_07 AC 132 ms
120,704 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 95 ms
120,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

struct item{
    long value, weight;
};

int n;
long W;
vector<item> items;

long dp[5000][3000];

long pack(int now, long weight_now){
    if(now == n){
        return 0;
    }else if(dp[now][weight_now / ((W + n - 1) / n + 1)] != -1){
        return dp[now][weight_now / ((W + n - 1) / n + 1)];
    }else{
        if(weight_now + items[now].weight > W){
            return dp[now][weight_now / ((W + n - 1) / n + 1)] = pack(now + 1, weight_now);
        }else{
            return dp[now][weight_now / ((W + n - 1) / n + 1)] = max(pack(now + 1, weight_now), items[now].value + pack(now + 1, weight_now + items[now].weight));
        }
    }
}

int main(){
    cin >> n >> W;
    items.resize(n);
    for(int i = 0; i < n; i++){
        cin >> items[i].value >> items[i].weight;
    }
    for(int i = 0; i < 5000; i++){
        for(int j = 0; j < 3000; j++){
            dp[i][j] = -1;
        }
    }
    cout << pack(0, 0) << endl;
}
0