結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー mugen_1337mugen_1337
提出日時 2021-03-19 23:32:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,773 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 212,732 KB
実行使用メモリ 814,848 KB
最終ジャッジ日時 2024-11-19 02:05:40
合計ジャッジ時間 53,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 55 ms
34,432 KB
testcase_10 AC 32 ms
20,864 KB
testcase_11 AC 33 ms
21,504 KB
testcase_12 AC 493 ms
272,256 KB
testcase_13 MLE -
testcase_14 AC 315 ms
158,080 KB
testcase_15 AC 315 ms
170,240 KB
testcase_16 AC 458 ms
253,184 KB
testcase_17 AC 572 ms
311,296 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 33 ms
20,352 KB
testcase_22 AC 14 ms
9,472 KB
testcase_23 AC 20 ms
13,440 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 4 ms
6,692 KB
testcase_31 AC 3 ms
6,692 KB
testcase_32 AC 16 ms
10,752 KB
testcase_33 AC 25 ms
15,616 KB
testcase_34 AC 57 ms
29,952 KB
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ALL(x) begin(x),end(x)
#define rep(i,n) for(int i=0;i<(n);i++)
#define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl;
#define mod 1000000007
using ll=long long;
const int INF=1000000000;
const ll LINF=1001002003004005006ll;
int dx[]={1,0,-1,0},dy[]={0,1,0,-1};
// ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;}
template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;}

struct IOSetup{
    IOSetup(){
        cin.tie(0);
        ios::sync_with_stdio(0);
        cout<<fixed<<setprecision(12);
    }
} iosetup;
 
template<typename T>
ostream &operator<<(ostream &os,const vector<T>&v){
    for(int i=0;i<(int)v.size();i++) os<<v[i]<<(i+1==(int)v.size()?"":" ");
    return os;
}
template<typename T>
istream &operator>>(istream &is,vector<T>&v){
    for(T &x:v)is>>x;
    return is;
}

signed main(){
    int n,k;cin>>n>>k;
    vector<int> p(n),d(n);
    rep(i,n) cin>>p[i]>>d[i];

    vector<int> ord(n);
    iota(ALL(ord),0);
    sort(ALL(ord),[&](int l,int r){return p[l]>p[r];});

    vector<vector<vector<int>>> dp(n+1,vector<vector<int>>(k+1,vector<int>(2,-INF)));
    dp[0][0][0]=0;

    rep(i,n){
        rep(j,k+1){
            chmax(dp[i+1][j][0],dp[i][j][0]);
            chmax(dp[i+1][j][1],dp[i][j][1]);

            int cost=p[ord[i]],val=d[ord[i]];
            if(j+cost<=k){
                chmax(dp[i+1][j+cost][1],dp[i][j][0]+val);
                chmax(dp[i+1][j+cost][1],dp[i][j][1]+val);
            }
            chmax(dp[i+1][j][0],dp[i][j][1]+val);
        }
    }
    int res=0;
    rep(i,n+1)rep(j,k+1)rep(l,2) chmax(res,dp[i][j][l]);
    cout<<res<<endl;
    return 0;
}
0