結果

問題 No.1782 ManyCoins
ユーザー milanis48663220milanis48663220
提出日時 2021-12-29 11:08:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,597 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 131,784 KB
実行使用メモリ 814,516 KB
最終ジャッジ日時 2024-10-03 17:01:41
合計ジャッジ時間 16,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 5 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 151 ms
54,420 KB
testcase_14 AC 1,126 ms
494,224 KB
testcase_15 AC 602 ms
239,404 KB
testcase_16 AC 236 ms
96,696 KB
testcase_17 AC 342 ms
151,212 KB
testcase_18 AC 288 ms
108,552 KB
testcase_19 AC 4 ms
6,820 KB
testcase_20 AC 180 ms
81,640 KB
testcase_21 AC 292 ms
132,996 KB
testcase_22 MLE -
testcase_23 MLE -
testcase_24 AC 34 ms
57,724 KB
testcase_25 MLE -
testcase_26 AC 246 ms
91,156 KB
testcase_27 AC 760 ms
404,164 KB
testcase_28 AC 35 ms
57,884 KB
testcase_29 AC 167 ms
120,340 KB
testcase_30 AC 245 ms
151,644 KB
testcase_31 AC 341 ms
198,508 KB
testcase_32 AC 365 ms
214,156 KB
testcase_33 AC 861 ms
487,320 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
権限があれば一括ダウンロードができます

ソースコード

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 ll INF = 1e+15;

typedef pair<ll, int> P;

struct edge{
    int to;
    ll cost;
};

vector<ll> dijkstra(int s, vector<vector<edge>> G){
    priority_queue<P, vector<P>, greater<P>> que;
    int n = G.size();
    vector<ll> d(n, INF);
    d[s] = 0;
    que.push(P(0, s));
    while(!que.empty()){
        P p = que.top();que.pop();
        int v = p.second;
        if(d[v] < p.first) continue;
        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;
                que.push(P(d[e.to], 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];
    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];
            g[j].push_back(edge{k, w[i]});
        }
    }
    auto d = dijkstra(0, g);
    // print_vector(d);
    ll ans = l;
    for(int i = 1; i < w[0]; i++){
        if(d[i] > l){
            if(l%w[0] >= i) {
                ans -= l/w[0]+1;
            } else {
                ans -= l/w[0];
            }
        }else{
            // debug_value(i)
            ans -= d[i]/w[0];
        }
    }
    cout << ans << endl;
}
0