結果

問題 No.1858 Gorgeous Knapsack
ユーザー ace_amuroace_amuro
提出日時 2023-04-13 17:02:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 1,042 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 199,264 KB
最終ジャッジ日時 2024-10-09 14:20:05
合計ジャッジ時間 3,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 24 ms
53,460 KB
testcase_05 AC 9 ms
26,396 KB
testcase_06 AC 32 ms
80,640 KB
testcase_07 AC 37 ms
105,932 KB
testcase_08 AC 46 ms
106,248 KB
testcase_09 AC 99 ms
168,384 KB
testcase_10 AC 65 ms
125,756 KB
testcase_11 AC 76 ms
137,160 KB
testcase_12 AC 89 ms
161,812 KB
testcase_13 AC 53 ms
126,368 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 11 ms
26,404 KB
testcase_25 AC 80 ms
156,576 KB
testcase_26 AC 36 ms
83,452 KB
testcase_27 AC 37 ms
88,300 KB
testcase_28 AC 58 ms
134,620 KB
testcase_29 AC 26 ms
97,828 KB
testcase_30 AC 37 ms
126,136 KB
testcase_31 AC 33 ms
118,148 KB
testcase_32 AC 26 ms
97,788 KB
testcase_33 AC 48 ms
130,168 KB
testcase_34 AC 126 ms
199,232 KB
testcase_35 AC 115 ms
199,264 KB
testcase_36 AC 124 ms
199,188 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 53 ms
146,616 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 115 ms
199,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cmath>
#include<ctime>
#include<string>
#include<algorithm>
#include<vector>
#include<queue>
#include<stack>
#include<map>
using namespace std;
typedef long long LL;
const int MR=5e3+10;
int n,m;
int v[MR],w[MR];
LL dp[MR][MR];
int main(){
    cin>>n>>m;
    for(int i=1;i<=n;i++) {
        cin>>v[i]>>w[i];
        for(int j=1;j<i;j++){
            if(v[j]<v[i]){
                swap(v[i],v[j]);
                swap(w[i],w[j]);
            }
        }
    }

    // memset(dp,0x3f,sizeof dp);
    // dp[0][0]=0;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=m;j++){
            dp[i][j]=dp[i-1][j];
            if(j>=w[i]){
                dp[i][j]=max(dp[i][j],dp[i-1][j-w[i]]+v[i]);
            }
        }
    }
    LL ans=0;
    for(int i=1;i<=n;i++){
        ans=max(1ll*v[i]*dp[i][m],ans);
    }
    cout<<ans<<endl;
    return 0;
}
0