結果

問題 No.1015 おつりは要らないです
ユーザー minatominato
提出日時 2020-04-03 21:47:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,797 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 182,540 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 01:11:43
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 24 ms
5,376 KB
testcase_11 AC 25 ms
5,376 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 24 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 26 ms
5,376 KB
testcase_16 AC 26 ms
5,376 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 25 ms
5,376 KB
testcase_20 AC 24 ms
5,376 KB
testcase_21 AC 24 ms
5,376 KB
testcase_22 AC 25 ms
5,376 KB
testcase_23 AC 23 ms
5,376 KB
testcase_24 AC 24 ms
5,376 KB
testcase_25 AC 24 ms
5,376 KB
testcase_26 AC 25 ms
5,376 KB
testcase_27 AC 24 ms
5,376 KB
testcase_28 AC 23 ms
5,376 KB
testcase_29 AC 25 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 9 ms
5,376 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 14 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < (n); ++i)
#define all(x) (x).begin(),(x).end()
#define ln '\n'
constexpr long long MOD = 1000000007LL;
//constexpr long long MOD = 998244353LL;
typedef long long ll;
typedef unsigned long long ull; 
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
template<class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true;} return false; }
template<class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true;} return false; }
///////////////////////////////////////////////////////////////////////////////////////////////////

int main() {
    ios::sync_with_stdio(false); cin.tie(nullptr);
    ll N,X,Y,Z; cin >> N >> X >> Y >> Z;
    vector<ll> A(N);
    rep(i,N) cin >> A[i];

    sort(all(A));
    reverse(all(A));
    rep(i,N) {
        ll p = A[i]/10000;
        if (p > Z) {
            A[i] -= Z*10000;
            Z = 0;
            break;
        }
        A[i] %= 10000;
        Z -= p;
    }
    sort(all(A));
    reverse(all(A));
    rep(i,N) {
        if (Z == 0) {
            ll p = A[i]/5000;
            if (p > Y) {
                A[i] -= Y*5000;
                Y = 0;
                break;
            }
            A[i] %= 5000;
            Y -= p;
        } else {
            A[i] = -1;
            Z--;
        }
    }
    sort(all(A));
    reverse(all(A));
    rep(i,N) {
        if (A[i]==-1) continue;
        if (Y==0 and Z==0) {
            ll cnt = A[i]/1000 + 1;
            if (cnt > X) {
                cout << "No" << ln;
                return 0;
            }
            X -= cnt;
        } else if (Z==0) {
            Y--;
        } else {
            Z--;
        }
    }

    cout << "Yes" << ln;
}

0