結果

問題 No.1782 ManyCoins
ユーザー chocoruskchocorusk
提出日時 2021-12-11 00:30:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,560 bytes
コンパイル時間 3,628 ms
コンパイル使用メモリ 192,984 KB
実行使用メモリ 10,860 KB
最終ジャッジ日時 2024-07-18 21:16:25
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 24 ms
7,168 KB
testcase_14 AC 77 ms
8,832 KB
testcase_15 AC 45 ms
6,912 KB
testcase_16 AC 55 ms
7,532 KB
testcase_17 AC 80 ms
8,804 KB
testcase_18 AC 53 ms
8,012 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 71 ms
8,724 KB
testcase_21 AC 80 ms
9,344 KB
testcase_22 AC 102 ms
9,856 KB
testcase_23 AC 91 ms
8,972 KB
testcase_24 AC 5 ms
7,284 KB
testcase_25 AC 101 ms
9,984 KB
testcase_26 AC 44 ms
6,400 KB
testcase_27 AC 119 ms
10,860 KB
testcase_28 AC 6 ms
7,296 KB
testcase_29 AC 22 ms
7,248 KB
testcase_30 AC 25 ms
7,196 KB
testcase_31 AC 26 ms
7,184 KB
testcase_32 AC 29 ms
7,296 KB
testcase_33 AC 38 ms
7,124 KB
testcase_34 AC 48 ms
7,232 KB
testcase_35 AC 57 ms
7,168 KB
testcase_36 AC 10 ms
7,096 KB
testcase_37 AC 7 ms
7,040 KB
testcase_38 AC 6 ms
7,168 KB
testcase_39 AC 4 ms
5,376 KB
testcase_40 AC 5 ms
7,040 KB
testcase_41 AC 5 ms
6,400 KB
testcase_42 AC 6 ms
6,912 KB
testcase_43 AC 5 ms
6,272 KB
testcase_44 AC 6 ms
7,188 KB
testcase_45 AC 5 ms
6,656 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 3 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 6 ms
7,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;

int main()
{
    int n; ll l;
    cin>>n>>l;
    int w[22];
    for(int i=0; i<n; i++) cin>>w[i];
    sort(w, w+n, greater<int>());
    int w0=w[0];
    const int INF=1e9;
    vector<int> d(w0, INF);
    d[0]=0;
    deque<int> deq;
    deq.push_back(0);
    while(!deq.empty()){
        int x=deq.front();
        deq.pop_front();
        for(int i=1; i<n; i++){
            if(x+w[i]<w0){
                if(d[x+w[i]]>d[x]){
                    d[x+w[i]]=d[x];
                    deq.push_front(x+w[i]);
                }
            }else{
                if(d[x+w[i]-w0]>d[x]+1){
                    d[x+w[i]-w0]=d[x]+1;
                    deq.push_back(x+w[i]-w0);
                }
            }
        }
    }
    ll ans=0;
    for(int i=0; i<w0; i++){
        if(d[i]==INF)continue;
        if(l-i<0) continue;
        ll r=(l-i)/w0;
        ans+=max(0ll, r-d[i]+1);
    }
    ans--;
    cout<<ans<<endl;
    return 0;
}
0