結果

問題 No.1522 Unfairness
ユーザー 👑 PCTprobabilityPCTprobability
提出日時 2021-11-20 19:56:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,840 bytes
コンパイル時間 4,644 ms
コンパイル使用メモリ 266,444 KB
実行使用メモリ 386,572 KB
最終ジャッジ日時 2023-09-02 16:17:27
合計ジャッジ時間 17,095 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
386,188 KB
testcase_01 AC 278 ms
386,196 KB
testcase_02 AC 278 ms
386,200 KB
testcase_03 AC 303 ms
386,212 KB
testcase_04 AC 298 ms
386,028 KB
testcase_05 AC 304 ms
386,092 KB
testcase_06 AC 336 ms
386,468 KB
testcase_07 AC 319 ms
386,136 KB
testcase_08 AC 340 ms
386,572 KB
testcase_09 AC 300 ms
386,188 KB
testcase_10 AC 321 ms
386,088 KB
testcase_11 AC 288 ms
386,008 KB
testcase_12 AC 290 ms
386,100 KB
testcase_13 AC 323 ms
386,028 KB
testcase_14 AC 281 ms
386,100 KB
testcase_15 AC 351 ms
386,476 KB
testcase_16 AC 351 ms
386,348 KB
testcase_17 AC 354 ms
386,508 KB
testcase_18 AC 350 ms
386,412 KB
testcase_19 AC 354 ms
386,360 KB
testcase_20 AC 351 ms
386,512 KB
testcase_21 AC 270 ms
386,008 KB
testcase_22 AC 271 ms
386,100 KB
testcase_23 AC 273 ms
386,264 KB
testcase_24 AC 270 ms
386,100 KB
testcase_25 AC 273 ms
386,232 KB
testcase_26 AC 273 ms
386,280 KB
testcase_27 AC 273 ms
386,228 KB
testcase_28 AC 268 ms
386,012 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <unistd.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
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,0));
  rever(x);
  rever(y);
  dp[0][y[0]]=x[0];
  dp[1][y[1]]=x[1];
  for(int i=0;i<a;i++){
    if(i){
      for(int j=0;j<=6999;j++) chmax(dp[i][j],dp[i-1][j]);
    }
    if(i>=2){
    for(int j=0;j<=6999;j++){
      if(j-y[i]>=0) chmax(dp[i][j],dp[i-2][j-y[i]]+x[i]);
      chmax(dp[i][j],dp[i-1][j]);
    }
    }
    for(int j=1;j<=6999;j++) chmax(dp[i][j],dp[i][j-1]);
  }
  cout<<dp[a-1][b]<<endl;
}
0