結果

問題 No.1015 おつりは要らないです
ユーザー rok_dwrok_dw
提出日時 2020-04-19 18:52:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 2,041 bytes
コンパイル時間 1,870 ms
コンパイル使用メモリ 173,604 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 06:12:44
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 40 ms
5,376 KB
testcase_11 AC 41 ms
5,376 KB
testcase_12 AC 39 ms
5,376 KB
testcase_13 AC 41 ms
5,376 KB
testcase_14 AC 43 ms
5,376 KB
testcase_15 AC 40 ms
5,376 KB
testcase_16 AC 41 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 40 ms
5,376 KB
testcase_19 AC 41 ms
5,376 KB
testcase_20 AC 28 ms
5,376 KB
testcase_21 AC 29 ms
5,376 KB
testcase_22 AC 28 ms
5,376 KB
testcase_23 AC 28 ms
5,376 KB
testcase_24 AC 28 ms
5,376 KB
testcase_25 AC 28 ms
5,376 KB
testcase_26 AC 28 ms
5,376 KB
testcase_27 AC 28 ms
5,376 KB
testcase_28 AC 28 ms
5,376 KB
testcase_29 AC 28 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 10 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 16 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG2(x,y) cout<<#x<<": "<<x<<" "<<#y<<": "<<y<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define DEBUG_ARR(v,n) cout<<#v<<":";REP(i,n)cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

int main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int n,x,y,z;
    cin>>n>>x>>y>>z;
    //vi a(n);
    priority_queue<int> p;

    int use=0;
    REP(i,n) {
        int tmp;
        cin>>tmp;
        if(z>0){
            use = min(z,tmp/10000);
            tmp -= use*10000;
            z -= use;
        }
        p.push(tmp);
    }

    while(z>0 && !p.empty()){
        auto q = p.top();
        p.pop();
        //ここでzが余っているということはp内の金額はすべて0円以上10000円未満
        z--;
    }

    while(y>0 && !p.empty()){
        auto q = p.top();
        p.pop();

        if(q < 5000) {
            p.push(q);
            break;
        }

        use = min(y,q/5000);
        q -= use*5000;
        p.push(q);
        y -= use;
    }

    while(y>0 && !p.empty()){
        auto q = p.top();
        p.pop();
        y--;
    }

    while(x>0 && !p.empty()){
        auto q = p.top();
        p.pop();
        if(q < 1000){
            p.push(q);
            break;
        }

        use = min(x,q/1000);
        q -= use*1000;
        p.push(q);
        x -= use;
    }

    while(x>0 && !p.empty()){
        auto q = p.top();
        p.pop();
        x--;
    }

    if(p.empty()) cout << "Yes" << endl;
    else cout << "No" << endl;
    
    return 0;
}
0