結果

問題 No.1015 おつりは要らないです
ユーザー konaaiocxvmq982konaaiocxvmq982
提出日時 2020-04-03 22:29:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 3,320 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 171,172 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-11 08:43:03
合計ジャッジ時間 4,582 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 62 ms
4,380 KB
testcase_11 AC 62 ms
4,380 KB
testcase_12 AC 59 ms
4,380 KB
testcase_13 AC 62 ms
4,380 KB
testcase_14 AC 64 ms
4,380 KB
testcase_15 AC 59 ms
4,380 KB
testcase_16 AC 62 ms
4,380 KB
testcase_17 AC 62 ms
4,380 KB
testcase_18 AC 61 ms
4,380 KB
testcase_19 AC 61 ms
4,380 KB
testcase_20 AC 56 ms
4,380 KB
testcase_21 AC 55 ms
4,376 KB
testcase_22 AC 56 ms
4,376 KB
testcase_23 AC 54 ms
4,380 KB
testcase_24 AC 56 ms
4,380 KB
testcase_25 AC 55 ms
4,380 KB
testcase_26 AC 55 ms
4,376 KB
testcase_27 AC 55 ms
4,380 KB
testcase_28 AC 55 ms
4,380 KB
testcase_29 AC 57 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 24 ms
4,376 KB
testcase_32 AC 24 ms
4,376 KB
testcase_33 AC 51 ms
4,380 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(int i=0; i<(n); ++i)
#define rep2(i, s, n) for(int i=s; i<(n); ++i)
#define ALL(v) (v).begin(), (v).end()

using namespace std;

typedef long long ll;

template<typename T>
using priority_queue_rev = priority_queue<T, vector<T>, greater<T> >;

static const int INTINF = (2147483647 >> 1); // 10^9 + 5000
static const ll LLINF = (9223372036854775807 >> 1);
static const int MAX = 1e5+1;
static const ll MOD = 1e9+7;

namespace Kunitaka{
    template<
        typename TYPE,
        std::size_t SIZE
    >
    std::size_t array_length(const TYPE (&array)[SIZE])
    {
        return SIZE;
    }

    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 Kunitaka;
namespace Printer{
    void br(){
        cout << endl;
    }

    void loop_cnt(int i){
        cout << "i = " << i << endl;
    }

    void loop_cnt(int i, int j){
        cout << "i = " << i << ", " << "j = " << j << endl;
    }

    template<class T>
    void print(T x){
        cout << x << endl;
    }

    template<class T, class S>
    void print(T x, S y){
        cout << x << "," << y << endl;
    }

    template<class T, class S, class U>
    void print(T x, S y, U z){
        cout << x << "," << y << "," << z << endl;
    }

    template<class T, class S>
    void print(pair<T, S> p){
        cout << p.first << ", " << p.second << endl;
    }

    template<
        typename TYPE,
        std::size_t SIZE
    >
    void print(const TYPE (&array)[SIZE]){
        int lim = array_length(array);
        for(int i=0; i<lim; i++){
            if(i) cout << " ";
            cout << array[i];
        }
        cout << endl;
    }

    template<class S>
    void print(vector<S> v){
        for(int i=0; i<v.size(); i++){
            if(i) cout << " ";
            cout<< v[i];
        }
        cout << endl;
    }

    template<class S>
    void print(vector<vector<S> > vv){
        for(int i=0; i<vv.size(); i++){
            for(int j=0; j<vv[i].size(); j++){
                if(j) cout << " ";
                cout << vv[i][j];
            }
            cout << endl;
        }
    }

    void yesno(bool x){
        if(x) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
};
using namespace Printer;

ll gausu(ll val, ll x){
    if(val == 0) return 1;
    ll res = val / x;
    res++;
    return res;
}

int main(int argc, const char * argv[]) {
    //提出時、消す----//
    //--------------//


    // input
    cout << fixed << setprecision(10);
    ll N, X, Y, Z; cin >> N >> X >> Y >> Z;
    ll vals[3] = {Z, Y, X};
    ll en[3] = {10000, 5000, 1000};
    vector<ll> A(N);
    rep(i, N) cin >> A[i];
    
    rep(j, 3){
        sort(ALL(A), greater<int>());
        rep(i, N){
            if(A[i] < 0) continue;
            ll tmp = A[i] / en[j];
            tmp = min(tmp, vals[j]);
            A[i] -= tmp * en[j];
            vals[j]-= tmp;
        }
        sort(ALL(A), greater<int>());
        rep(i, min(N, vals[j])){
            A[i] -= en[j];
        }
    }
    
    
    bool ok = true;
    rep(i, N){
        // print(A[i]);
        if(A[i] >= 0) ok = false;
    }

    yesno(ok);


    return 0;
}
0