結果

問題 No.1522 Unfairness
ユーザー 👑 PCTprobabilityPCTprobability
提出日時 2021-11-20 20:14:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,731 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 208,336 KB
実行使用メモリ 386,504 KB
最終ジャッジ日時 2023-09-02 16:39:54
合計ジャッジ時間 13,535 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 321 ms
386,084 KB
testcase_04 AC 311 ms
386,048 KB
testcase_05 AC 327 ms
386,308 KB
testcase_06 AC 384 ms
386,404 KB
testcase_07 AC 336 ms
386,036 KB
testcase_08 AC 389 ms
386,456 KB
testcase_09 AC 330 ms
386,044 KB
testcase_10 AC 369 ms
386,048 KB
testcase_11 AC 303 ms
386,148 KB
testcase_12 AC 306 ms
386,196 KB
testcase_13 AC 371 ms
386,036 KB
testcase_14 AC 293 ms
386,028 KB
testcase_15 AC 389 ms
386,488 KB
testcase_16 AC 393 ms
386,488 KB
testcase_17 WA -
testcase_18 AC 400 ms
386,312 KB
testcase_19 AC 393 ms
386,436 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 281 ms
386,156 KB
testcase_24 WA -
testcase_25 AC 278 ms
386,128 KB
testcase_26 WA -
testcase_27 AC 278 ms
386,108 KB
testcase_28 AC 279 ms
386,124 KB
testcase_29 AC 278 ms
386,032 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;i++){
    if(1){
      for(int j=0;j<=6999;j++) chmax(dp[i+1][j],dp[i][j]);
    }
    if(1){
    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-1][b]<<endl;
}
0