結果

問題 No.1782 ManyCoins
ユーザー KudeKude
提出日時 2021-12-11 03:06:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,127 ms / 2,000 ms
コード長 2,003 bytes
コンパイル時間 2,904 ms
コンパイル使用メモリ 241,524 KB
実行使用メモリ 475,648 KB
最終ジャッジ日時 2024-07-19 02:25:04
合計ジャッジ時間 20,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 5 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 409 ms
114,048 KB
testcase_14 AC 778 ms
283,108 KB
testcase_15 AC 401 ms
143,496 KB
testcase_16 AC 467 ms
175,184 KB
testcase_17 AC 815 ms
290,552 KB
testcase_18 AC 575 ms
196,344 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 702 ms
254,112 KB
testcase_21 AC 828 ms
304,104 KB
testcase_22 AC 1,127 ms
469,084 KB
testcase_23 AC 995 ms
428,732 KB
testcase_24 AC 46 ms
53,888 KB
testcase_25 AC 1,083 ms
459,256 KB
testcase_26 AC 376 ms
131,044 KB
testcase_27 AC 1,041 ms
469,244 KB
testcase_28 AC 42 ms
53,888 KB
testcase_29 AC 197 ms
116,224 KB
testcase_30 AC 229 ms
116,224 KB
testcase_31 AC 268 ms
131,968 KB
testcase_32 AC 286 ms
147,584 KB
testcase_33 AC 501 ms
272,640 KB
testcase_34 AC 588 ms
319,488 KB
testcase_35 AC 791 ms
475,648 KB
testcase_36 AC 346 ms
168,832 KB
testcase_37 AC 337 ms
183,168 KB
testcase_38 AC 529 ms
334,720 KB
testcase_39 AC 71 ms
43,264 KB
testcase_40 AC 310 ms
172,032 KB
testcase_41 AC 197 ms
112,768 KB
testcase_42 AC 302 ms
176,640 KB
testcase_43 AC 32 ms
40,944 KB
testcase_44 AC 671 ms
449,280 KB
testcase_45 AC 211 ms
113,024 KB
testcase_46 AC 51 ms
18,304 KB
testcase_47 AC 52 ms
18,176 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 43 ms
53,888 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(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