結果

問題 No.1782 ManyCoins
ユーザー LuzhiledLuzhiled
提出日時 2021-12-07 01:05:25
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 2,762 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 209,948 KB
実行使用メモリ 10,804 KB
最終ジャッジ日時 2023-09-25 22:28:38
合計ジャッジ時間 4,740 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 14 ms
6,424 KB
testcase_14 AC 13 ms
4,376 KB
testcase_15 AC 14 ms
4,380 KB
testcase_16 AC 36 ms
5,416 KB
testcase_17 AC 42 ms
6,308 KB
testcase_18 AC 42 ms
5,656 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 17 ms
4,464 KB
testcase_21 AC 8 ms
4,376 KB
testcase_22 AC 20 ms
4,588 KB
testcase_23 AC 55 ms
6,612 KB
testcase_24 AC 6 ms
10,804 KB
testcase_25 AC 3 ms
4,380 KB
testcase_26 AC 46 ms
5,724 KB
testcase_27 AC 3 ms
4,376 KB
testcase_28 AC 6 ms
10,648 KB
testcase_29 AC 29 ms
10,656 KB
testcase_30 AC 29 ms
10,652 KB
testcase_31 AC 42 ms
10,796 KB
testcase_32 AC 47 ms
10,796 KB
testcase_33 AC 72 ms
10,708 KB
testcase_34 AC 87 ms
10,644 KB
testcase_35 AC 113 ms
10,800 KB
testcase_36 AC 5 ms
4,376 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 2 ms
4,380 KB
testcase_40 AC 3 ms
4,376 KB
testcase_41 AC 3 ms
4,676 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 5 ms
8,872 KB
testcase_44 AC 2 ms
4,384 KB
testcase_45 AC 2 ms
4,380 KB
testcase_46 AC 2 ms
4,376 KB
testcase_47 AC 1 ms
4,384 KB
testcase_48 AC 1 ms
4,380 KB
testcase_49 AC 2 ms
4,376 KB
testcase_50 AC 6 ms
10,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// いけ!おれの信じたコード

#include <bits/stdc++.h>
using namespace std;

// template {{{
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;

#define  range(i, l, r) for (i64 i = (i64)(l); i < (i64)(r); (i) += 1)
#define rrange(i, l, r) for (i64 i = (i64)(r) - 1; i >= (i64)(l); (i) -= 1)

#define  whole(f, x, ...) ([&](decltype((x)) container) { return (f)(  begin(container),  end(container), ## __VA_ARGS__); })(x)
#define rwhole(f, x, ...) ([&](decltype((x)) container) { return (f)( rbegin(container), rend(container), ## __VA_ARGS__); })(x)

#define debug(x) cerr << "(" << __LINE__ << ")" << #x << ": " << (x) << endl

constexpr i32 inf   = 1001001001;
constexpr i64 infll = 1001001001001001001ll;

constexpr i32 dx[] = {0, -1, 1, 0, -1, 1, -1, 1}; 
constexpr i32 dy[] = {-1, 0, 0, 1, -1, -1, 1, 1};

struct IoSetup { IoSetup(i32 x = 15){ cin.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(x); cerr << fixed << setprecision(x); } } iosetup;

template <typename T = i64> T input() { T x; cin >> x; return x; }

template <typename T> ostream &operator<<(ostream &os, vector<T> &v) { range(i, 0, v.size()) { os << v[i] << (i + 1 != (int)v.size() ? " " : ""); } return os; } 
template <typename T> istream &operator>>(istream &is, vector<T> &v) { for (T &in : v) is >> in; return is; }

template <typename T1, typename T2> ostream &operator<<(ostream &os, pair<T1, T2> p) { os << "(" << p.first << ", " << p.second << ")"; return os; }
template <typename T1, typename T2> istream &operator>>(istream &is, pair<T1, T2> &p) { is >> p.first >> p.second; return is; }

template <typename T> vector<T> make_vector(size_t a, T b) { return vector<T>(a, b); }
template <typename... Ts> auto make_vector(size_t a, Ts... ts) { return vector<decltype(make_vector(ts...))>(a, make_vector(ts...)); }

template <typename T1, typename T2> inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
template <typename T1, typename T2> inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }
// }}}

void solve() {
  int n = input();
  i64 l = input();

  vector< int > ws(n);
  cin >> ws;

  whole(sort, ws);

  auto dp = make_vector(ws[0], infll);
  dp[0] = 0;

  priority_queue< pair<i64, int>, vector<pair<i64, int>>, greater<pair<i64, int>> > pq;
  pq.emplace(dp[0], 0);

  while (not pq.empty()) {
    auto [c, v] = pq.top();
    pq.pop();

    if (dp[v] != c) continue;
    
    for (const auto &w: ws) {
      int u = (v + w) % ws[0];
      if (chmin(dp[u], c + w)) {
        pq.emplace(dp[u], u);
      }
    }
  }

  i64 ans = -1;
  for (auto &d : dp) {
    if (d > l) continue;
    ans += (l - d) / ws[0] + 1;
  }

  cout << ans << endl;
}

signed main() {
  solve();
}
0