結果

問題 No.1522 Unfairness
ユーザー 👑 PCTprobabilityPCTprobability
提出日時 2021-11-20 20:17:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 2,734 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 209,376 KB
実行使用メモリ 386,544 KB
最終ジャッジ日時 2023-09-02 16:43:46
合計ジャッジ時間 13,397 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
386,188 KB
testcase_01 AC 270 ms
386,068 KB
testcase_02 AC 268 ms
386,072 KB
testcase_03 AC 314 ms
386,032 KB
testcase_04 AC 305 ms
386,188 KB
testcase_05 AC 321 ms
386,176 KB
testcase_06 AC 376 ms
386,436 KB
testcase_07 AC 330 ms
386,544 KB
testcase_08 AC 384 ms
386,432 KB
testcase_09 AC 326 ms
386,068 KB
testcase_10 AC 359 ms
386,040 KB
testcase_11 AC 291 ms
386,100 KB
testcase_12 AC 295 ms
386,192 KB
testcase_13 AC 353 ms
386,456 KB
testcase_14 AC 278 ms
386,180 KB
testcase_15 AC 375 ms
386,300 KB
testcase_16 AC 371 ms
386,280 KB
testcase_17 AC 390 ms
386,544 KB
testcase_18 AC 385 ms
386,452 KB
testcase_19 AC 373 ms
386,444 KB
testcase_20 AC 366 ms
386,508 KB
testcase_21 AC 270 ms
386,120 KB
testcase_22 AC 272 ms
386,104 KB
testcase_23 AC 263 ms
386,196 KB
testcase_24 AC 268 ms
386,364 KB
testcase_25 AC 267 ms
386,040 KB
testcase_26 AC 267 ms
386,040 KB
testcase_27 AC 267 ms
386,176 KB
testcase_28 AC 265 ms
386,132 KB
testcase_29 AC 264 ms
386,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <unistd.h>
using namespace std;

using ll = long long;
using ld = long double;
using ull = long long;
#define endl "\n"
#define REP3(i, m, n) for (int i = (m); (i) < int(n); ++ (i))
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(x) begin(x), end(x)
#define all(s) (s).begin(),(s).end()
//#define rep2(i, m, n) for (int i = (m); i < (n); ++i)
//#define rep(i, n) rep2(i, 0, n)
#define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i)
#define drep(i, n) drep2(i, n, 0)
#define rever(vec) reverse(vec.begin(), vec.end())
#define sor(vec) sort(vec.begin(), vec.end())
#define fi first
#define se second
#define pb push_back
#define P pair<ll,ll>
#define REP(i, n) for (int i = 0; i < (n); ++i)
#define in scanner.read_int()
//const ll mod = 998244353;
const ll mod = 1000000007;
const ll inf = 4500000000000000000ll;
static const long double pi = 3.141592653589793;
template<class T>void vcin(vector<T> &n){for(int i=0;i<int(n.size());i++) cin>>n[i];}
template<class T,class K>void vcin(vector<T> &n,vector<K> &m){for(int i=0;i<int(n.size());i++) cin>>n[i]>>m[i];}
template<class T>void vcout(vector<T> &n){for(int i=0;i<int(n.size());i++){cout<<n[i]<<" ";}cout<<endl;}
template<class T>void vcin(vector<vector<T>> &n){for(int i=0;i<int(n.size());i++){for(int j=0;j<int(n[i].size());j++){cin>>n[i][j];}}}
template<class T>void vcout(vector<vector<T>> &n){for(int i=0;i<int(n.size());i++){for(int j=0;j<int(n[i].size());j++){cout<<n[i][j]<<" ";}cout<<endl;}cout<<endl;}
void yes(bool a){cout<<(a?"yes":"no")<<endl;}
void YES(bool a){cout<<(a?"YES":"NO")<<endl;}
void Yes(bool a){cout<<(a?"Yes":"No")<<endl;}
void possible(bool a){ cout<<(a?"possible":"impossible")<<endl; }
void Possible(bool a){ cout<<(a?"Possible":"Impossible")<<endl; }
void POSSIBLE(bool a){ cout<<(a?"POSSIBLE":"IMPOSSIBLE")<<endl; }template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0;}
void cincout(){
  ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
  cout<< fixed << setprecision(20);
}

int main() {
  cincout();
  ll a,b;
  cin>>a>>b;
  vector<ll> x(a-1);
  vector<ll> y(a-1);
  vector<ll> t(a);
  vcin(t);
  sor(t);
  for(int i=0;i<a-1;i++){
    y[i]=t[i+1];
    x[i]=t[i+1]-t[i];
    swap(x[i],y[i]);
  
  }
  a--;
  //x価値 y重さ
  vector<vector<ll>> dp(7000,vector<ll>(7000,-inf));
  rever(x);
  rever(y);
  dp[0][0]=0;
  for(int i=0;i<=a+5;i++){
    if(1){
      for(int j=0;j<=6999;j++) chmax(dp[i+1][j],dp[i][j]);
    }
    if(i<a){
    for(int j=0;j<=6999;j++){
      if(j-y[i]>=0) chmax(dp[i+2][j],dp[i][j-y[i]]+x[i]);
      chmax(dp[i+2][j],dp[i][j]);
    }
    }
    for(int j=1;j<=6999;j++) chmax(dp[i][j],dp[i][j-1]);
  }
  cout<<dp[a+2][b]<<endl;
}
0