結果

問題 No.3014 岩井満足性問題
ユーザー asmin
提出日時 2025-01-25 13:22:26
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 2,109 bytes
コンパイル時間 3,235 ms
コンパイル使用メモリ 285,732 KB
実行使用メモリ 814,720 KB
最終ジャッジ日時 2025-01-25 22:44:58
合計ジャッジ時間 8,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 MLE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using ll = long long;
using ld = long double;
//using ar2 = array<ll, 2>;

#define pb push_back
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define pop_cnt(s) ll(popcount(uint64_t(s)))
#define next_p(v) next_permutation(v.begin(), v.end())

template <typename T> inline bool chmin(T& a, const T& b) {bool c=a>b; if(a>b) a=b; return c;}
template <typename T> inline bool chmax(T& a, const T& b) {bool c=a<b; if(a<b) a=b; return c;}
template <typename T> inline T gcd(T a,T b) {return (b==0)?a:gcd(b,a%b);}
template <typename T> inline T lcm(T a, T b) {return (a*b)/gcd(a,b);}
template <typename T> using vc = vector<T>;
template <typename T> using vvc = vc<vc<T>>;
template <typename T> using vvvc = vc<vvc<T>>;
template <class T> using pq = priority_queue<T, vc<T>>;
template <class T> using pq_g = priority_queue<T, vc<T>, greater<T>>;

const ll INF = 2e18;
const vc<int> dx = {1, 1, 1, 0, 0, -1, -1, -1};
const vc<int> dy = {1, 0, -1, 1, -1, 1, 0, -1};

//ライブラリ貼るところ




//ここまで

void solve(){
    int n, d, k; cin >> n >> d >> k;
    vector<ll> a(n), c(n);
    for(int i = 0; i < n; ++i) cin >> a[i];
    for(int i = 0; i < n; ++i) cin >> c[i];
    vector<vector<vector<ll>>> dp(n + 1, vector<vector<ll>>(k + 1, vector<ll>(d + 1, -INF)));
    dp[0][0][0] = 0;
    for(int i = 0; i < n; ++i){
        for(ll j = 0; j <= k; ++j){
            for(int l = 0; l < d; ++l){
                if(dp[i][j][l] != -INF){
                    if(j + c[i] <= k) chmax(dp[i + 1][j + c[i]][l + 1], dp[i][j][l] + a[i]);
                    else chmax(dp[i + 1][k][l + 1], dp[i][j][l] + a[i]);
                }
                chmax(dp[i + 1][j][l], dp[i][j][l]);
            }
            chmax(dp[i + 1][j][d], dp[i][j][d]);
        }
    }
    if(dp[n][k][d] == -INF) cout << "No" << "\n";
    else cout << dp[n][k][d] << "\n";
}    











int main(){
    cin.tie( nullptr );
    ios::sync_with_stdio( false );
    cout << setprecision( 15 ) << fixed;

    int t = 1;
    for(int i = 0; i < t; ++i) solve();
}
0