結果

問題 No.1782 ManyCoins
ユーザー KudeKude
提出日時 2021-12-11 02:31:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,684 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 231,516 KB
実行使用メモリ 27,524 KB
最終ジャッジ日時 2024-07-19 01:45:34
合計ジャッジ時間 6,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 1 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 23 ms
11,136 KB
testcase_14 AC 197 ms
19,060 KB
testcase_15 AC 122 ms
13,176 KB
testcase_16 AC 147 ms
14,356 KB
testcase_17 AC 212 ms
19,276 KB
testcase_18 AC 153 ms
15,208 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 178 ms
18,296 KB
testcase_21 AC 265 ms
19,208 KB
testcase_22 AC 247 ms
27,444 KB
testcase_23 AC 198 ms
18,448 KB
testcase_24 AC 6 ms
11,136 KB
testcase_25 AC 222 ms
27,524 KB
testcase_26 AC 107 ms
10,412 KB
testcase_27 AC 233 ms
27,320 KB
testcase_28 AC 8 ms
11,264 KB
testcase_29 AC 21 ms
11,136 KB
testcase_30 AC 20 ms
11,136 KB
testcase_31 AC 27 ms
11,136 KB
testcase_32 AC 31 ms
11,136 KB
testcase_33 AC 44 ms
11,264 KB
testcase_34 AC 45 ms
11,136 KB
testcase_35 AC 55 ms
11,136 KB
testcase_36 AC 21 ms
10,912 KB
testcase_37 AC 8 ms
10,880 KB
testcase_38 AC 7 ms
11,392 KB
testcase_39 AC 3 ms
5,504 KB
testcase_40 AC 7 ms
10,880 KB
testcase_41 AC 5 ms
9,344 KB
testcase_42 AC 6 ms
10,496 KB
testcase_43 AC 5 ms
9,216 KB
testcase_44 AC 6 ms
11,136 KB
testcase_45 AC 5 ms
9,984 KB
testcase_46 AC 8 ms
5,376 KB
testcase_47 AC 9 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 7 ms
11,136 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>;

int w[20];
ll dist[1000000];

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  ll l;
  cin >> n >> l;
  rep(i, n) cin >> w[i];
  sort(w, w + n);
  int m = w[n - 1];
  n--;
  constexpr ll INF = 1002003004005006007;
  rep(i, m) dist[i] = INF;
  auto cmp = [&](const pair<int, ll>& lhs, const pair<int, ll>& rhs) {
    return lhs.second > rhs.second;
  };
  priority_queue<
      pair<int, ll>,
      vector<pair<int, ll>>,
      decltype(cmp)
      > q(cmp);
  auto push = [&](int v, ll d) {
    if (d < dist[v]) {
      dist[v] = d;
      q.emplace(v, d);
    }
  };
  push(0, 0);
  while(!q.empty()) {
    auto [u, d] = q.top(); q.pop();
    if (dist[u] != d) continue;
    rep(i, n) {
      int v = u + w[i];
      ll nd = d + w[i];
      if (v >= m) v -= m;
      push(v, nd);
    }
  }
  ll ans = 0;
  rep(i, m) {
    if (dist[i] > l) continue;
    // dist[i] + (cnt-1)m <= l
    // cnt <= (l - dist[i]) / m + 1
    ans += (l - dist[i]) / m + 1;
  }
  ans--;  // k = 0
  cout << ans << '\n';
}
0