結果

問題 No.1782 ManyCoins
ユーザー KudeKude
提出日時 2021-12-11 03:08:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 2,010 bytes
コンパイル時間 2,720 ms
コンパイル使用メモリ 240,472 KB
実行使用メモリ 297,396 KB
最終ジャッジ日時 2024-07-19 02:26:48
合計ジャッジ時間 16,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 317 ms
60,544 KB
testcase_14 AC 667 ms
169,744 KB
testcase_15 AC 308 ms
81,420 KB
testcase_16 AC 370 ms
98,928 KB
testcase_17 AC 664 ms
173,808 KB
testcase_18 AC 445 ms
110,444 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 588 ms
152,216 KB
testcase_21 AC 681 ms
173,152 KB
testcase_22 AC 880 ms
293,884 KB
testcase_23 AC 794 ms
268,568 KB
testcase_24 AC 17 ms
30,716 KB
testcase_25 AC 876 ms
297,396 KB
testcase_26 AC 281 ms
74,080 KB
testcase_27 AC 834 ms
293,996 KB
testcase_28 AC 17 ms
30,680 KB
testcase_29 AC 112 ms
61,804 KB
testcase_30 AC 134 ms
61,948 KB
testcase_31 AC 181 ms
77,420 KB
testcase_32 AC 180 ms
77,312 KB
testcase_33 AC 374 ms
171,264 KB
testcase_34 AC 379 ms
171,244 KB
testcase_35 AC 549 ms
296,064 KB
testcase_36 AC 226 ms
102,784 KB
testcase_37 AC 209 ms
102,460 KB
testcase_38 AC 333 ms
171,136 KB
testcase_39 AC 49 ms
23,936 KB
testcase_40 AC 207 ms
104,568 KB
testcase_41 AC 123 ms
59,520 KB
testcase_42 AC 196 ms
98,852 KB
testcase_43 AC 13 ms
23,552 KB
testcase_44 AC 480 ms
289,236 KB
testcase_45 AC 135 ms
66,540 KB
testcase_46 AC 36 ms
11,008 KB
testcase_47 AC 41 ms
11,008 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 17 ms
30,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) { a = max(a, b); }
template<class T> void chmin(T& a, const T& b) { a = min(a, b); }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

constexpr int INF = 1001001001;
template <class T, int k = 2>
vector<int> kBFS(const vector<vector<pair<int, T>>>& g, int s = 0) {
  const int n = g.size();
  vector<int> dist(n, INF);
  deque<vector<int>> q(k);
  dist[s] = 0;
  q[0].emplace_back(s);
  for (int dist_cur = 0;;) {
    vector<int>& vs = q[0];
    while (!vs.empty()) {
      int u = vs.back();
      vs.pop_back();
      if (dist[u] != dist_cur) continue;
      for (auto [v, c] : g[u]) {
        int nd = dist_cur + c;
        if (nd < dist[v]) {
          dist[v] = nd;
          q[c].emplace_back(v);
        }
      }
    }
    for(int i = 1;; i++) {
      dist_cur++;
      vector<int> tmp = move(q.front());
      q.pop_front();
      q.emplace_back(move(tmp));
      if (!q[0].empty()) break;
      if (i == k - 1) return dist;
    }
  }
}

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  ll l;
  cin >> n >> l;
  VI w(n);
  rep(i, n) cin >> w[i];
  sort(all(w));
  const int m = w.back();
  w.pop_back();
  vector<vector<pair<int, bool>>> g(m);
  rep(u, m) for(int d: w) {
    int v = u + d;
    if (v < m) g[u].emplace_back(v, 0);
    else g[u].emplace_back(v - m, 1);
  }
  auto dist = kBFS(g);
  ll ans = 0;
  rep(i, m) {
    ll d = (ll)dist[i] * m + i;
    if (d > l) continue;
    ans += (l - d) / m + 1;
  }
  ans--;
  cout << ans << '\n';
}
0