結果

問題 No.2329 Nafmo、イカサマをする
ユーザー shop_oneshop_one
提出日時 2023-05-28 15:55:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 972 bytes
コンパイル時間 1,094 ms
コンパイル使用メモリ 120,216 KB
実行使用メモリ 60,640 KB
最終ジャッジ日時 2023-08-27 13:19:04
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,756 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 53 ms
5,936 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 3 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 80 ms
7,264 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 3 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 224 ms
10,212 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 1 ms
4,380 KB
testcase_35 AC 4 ms
4,376 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<chrono>
#include<iomanip>
#include<map>
#include<set>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using TP = tuple<ll,ll,ll>;
void init_io(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(18);
}
signed main(){
  init_io();
  ll n,m,k;
  cin >> n >> m >> k;
  vector<ll> a(n);
  queue<P> que;
  set<ll> st;
  for (int i=0;i<n;i++) {
    cin >> a[i];
    if (a[i] <= m) {
      que.push(P(a[i], 1));
    }
  }
  while(!que.empty()) {
    auto [v, cnt] = que.front(); que.pop();
    st.insert(v);
    if (cnt == k) continue;
    for (int i=0;i<n;i++) {
      ll nxt = v + a[i];
      if (st.find(nxt) == st.end() && cnt < k && nxt <= m) {
        st.insert(nxt);
        que.push(P(nxt, cnt+1));
      }
    }
  }
  ll ans = 0;
  for (auto v: st) {
    ans = max(v, ans);
  }
  cout << ans << endl;
}
0