結果

問題 No.2329 Nafmo、イカサマをする
ユーザー aradarad
提出日時 2023-05-28 15:00:13
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 5,669 ms
コンパイル使用メモリ 261,604 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-27 03:58:39
合計ジャッジ時間 5,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
using VD = vector<double>;
using VVD = vector<VD>;
using VS = vector<string>;
using P = pair<ll,ll>;
using VP = vector<P>;
#define rep(i, n) for (ll i = 0; i < ll(n); i++)
#define out(x) cout << x << endl
#define dout(x) cout << fixed << setprecision(10) << x << endl
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
#define sz(x) (int)(x.size())
#define re0 return 0
#define pcnt __builtin_popcountll
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
constexpr int inf = 1e9;
constexpr ll INF = 1e18;
//using mint = modint1000000007;
using mint = modint998244353;
int di[4] = {1,0,-1,0};
int dj[4] = {0,1,0,-1};

ll n,m,k;
VL a;
ll ans = 0;

void rec(int cur,int i,ll now = 0){
    if(now <= m) chmax(ans,now);
    else return;
    if(cur == k){
        return;
    }
    for(int j = i;j < n;j++){
        rec(cur+1,j,now+a[j]);
    }
    return;
}

int main(){
    cin >> n >> m >> k;
    a.resize(n);
    rep(i,n) cin >> a[i];
    rec(0,0);
    out(ans);
}
0