結果

問題 No.1782 ManyCoins
ユーザー milanis48663220milanis48663220
提出日時 2021-12-29 11:24:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,600 ms / 2,000 ms
コード長 2,664 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 130,476 KB
実行使用メモリ 483,504 KB
最終ジャッジ日時 2024-10-03 17:30:15
合計ジャッジ時間 22,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 5 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 412 ms
114,048 KB
testcase_14 AC 942 ms
281,216 KB
testcase_15 AC 447 ms
142,356 KB
testcase_16 AC 544 ms
174,336 KB
testcase_17 AC 967 ms
288,768 KB
testcase_18 AC 663 ms
195,328 KB
testcase_19 AC 3 ms
6,816 KB
testcase_20 AC 866 ms
253,484 KB
testcase_21 AC 1,035 ms
302,132 KB
testcase_22 AC 1,383 ms
475,156 KB
testcase_23 AC 1,272 ms
433,192 KB
testcase_24 AC 37 ms
53,892 KB
testcase_25 AC 1,399 ms
464,628 KB
testcase_26 AC 410 ms
130,764 KB
testcase_27 AC 1,600 ms
476,336 KB
testcase_28 AC 37 ms
53,856 KB
testcase_29 AC 168 ms
116,424 KB
testcase_30 AC 209 ms
116,360 KB
testcase_31 AC 276 ms
132,096 KB
testcase_32 AC 300 ms
147,692 KB
testcase_33 AC 593 ms
272,736 KB
testcase_34 AC 756 ms
319,616 KB
testcase_35 AC 1,106 ms
483,504 KB
testcase_36 AC 397 ms
168,704 KB
testcase_37 AC 394 ms
183,124 KB
testcase_38 AC 773 ms
334,704 KB
testcase_39 AC 87 ms
43,272 KB
testcase_40 AC 364 ms
172,056 KB
testcase_41 AC 227 ms
112,808 KB
testcase_42 AC 365 ms
176,768 KB
testcase_43 AC 29 ms
40,896 KB
testcase_44 AC 945 ms
456,832 KB
testcase_45 AC 236 ms
113,216 KB
testcase_46 AC 54 ms
18,304 KB
testcase_47 AC 56 ms
18,176 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 39 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

const int INF = 1e+9;

struct edge{
    int to;
    int cost;
};

vector<int> dijkstra(int s, vector<vector<edge>> G){
    deque<int> dq;
    int n = G.size();
    vector<int> d(n, INF);
    d[s] = 0;
    dq.push_back(s);
    while(!dq.empty()){
        int v = dq.front(); dq.pop_front();
        for(int i = 0; i < G[v].size(); i++){
            edge e = G[v][i];
            if(d[v] + e.cost < d[e.to]){
                d[e.to] = d[v] + e.cost;
                if(e.cost == 0) dq.push_front(e.to);
                else dq.push_back(e.to);
            }
        }
    }
    return d;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; ll l; cin >> n >> l;
    vector<int> w(n);
    for(int i = 0; i < n; i++) cin >> w[i];
    sort(w.begin(), w.end(), greater<int>());
    vector<vector<edge>> g(w[0]);
    for(int i = 1; i < n; i++){
        for(int j = 0; j < w[0]; j++){
            int k = (j+w[i])%w[0];
            int cost = k > j ? 0 : 1;
            g[j].push_back(edge{k, cost});
        }
    }
    auto d = dijkstra(0, g);
    // print_vector(d);
    ll ans = l;
    for(int i = 1; i < w[0]; i++){
        if((ll)i+(ll)d[i]*(ll)w[0] > l){
            // debug_value(i)
            if(l%w[0] >= i) {
                ans -= l/w[0]+1;
            } else {
                ans -= l/w[0];
            }
        }else{
            // debug_value(i)
            ans -= d[i];
        }
    }
    cout << ans << endl;
}
0