結果
| 問題 |
No.1522 Unfairness
|
| コンテスト | |
| ユーザー |
Haa
|
| 提出日時 | 2021-05-28 22:28:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 73 ms / 2,000 ms |
| コード長 | 863 bytes |
| コンパイル時間 | 1,630 ms |
| コンパイル使用メモリ | 173,300 KB |
| 実行使用メモリ | 153,676 KB |
| 最終ジャッジ日時 | 2024-11-19 06:14:36 |
| 合計ジャッジ時間 | 4,033 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=1000000007;
constexpr ll INF=2e18;
int main(){
int n, m; cin >> n >> m;
VI a(n); REP(i,n) cin >> a[i];
sort(ALL(a));
ll dp[3100][3100][2]={0};
ll ans=0;
REP(i,n-1){
for(int j=0;j<=m;j++){
if(j+(a[i+1]-a[i])<=m)
dp[i+1][j+(a[i+1]-a[i])][1]=max(dp[i+1][j+(a[i+1]-a[i])][1],dp[i][j][0]+a[i+1]);
dp[i+1][j][0]=max(dp[i+1][j][0],dp[i][j][0]);
dp[i+1][j][0]=max(dp[i+1][j][0],dp[i][j][1]);
}
for(int j=0;j<=m;j++){
ans=max(ans,dp[i+1][j][0]);
ans=max(ans,dp[i+1][j][1]);
}
}
cout << ans << endl;
}
Haa