結果

問題 No.1522 Unfairness
ユーザー shiomusubi496shiomusubi496
提出日時 2021-05-28 21:24:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 204,088 KB
最終ジャッジ日時 2025-01-21 19:44:03
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
constexpr int INF=1e18;
void chmax(int&a,int b){if(a<b)a=b;}
signed main(){
    int N,M; cin>>N>>M;
    vector<int> A(N);
    for(int i=0;i<N;i++) cin>>A[i];
    sort(A.begin(),A.end());
    vector<vector<vector<int>>>dp(N,vector<vector<int>>(M+1,vector<int>(2,-INF)));
    dp[0][0][0]=0;
    for(int i=1;i<N;i++){
        for(int j=0;j<=M;j++){
            chmax(dp[i][j][0],dp[i-1][j][0]);
            chmax(dp[i][j][0],dp[i-1][j][1]);
        }
        for(int j=0;j<=M;j++){
            if(j+abs(A[i]-A[i-1])<=M){
                chmax(dp[i][j+abs(A[i]-A[i-1])][1],dp[i-1][j][0]+A[i]);
            }
        }
    }
    int ans=0;
    for(int i=0;i<=M;i++){
        chmax(ans,dp[N-1][i][0]);
        chmax(ans,dp[N-1][i][1]);
    }
    cout<<ans<<endl;
}
0