結果

問題 No.1015 おつりは要らないです
ユーザー minatominato
提出日時 2020-04-03 21:36:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,644 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 180,280 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-16 00:31:19
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 29 ms
4,376 KB
testcase_11 AC 29 ms
4,380 KB
testcase_12 AC 31 ms
4,376 KB
testcase_13 AC 29 ms
4,376 KB
testcase_14 AC 32 ms
4,376 KB
testcase_15 AC 30 ms
4,380 KB
testcase_16 AC 31 ms
4,376 KB
testcase_17 AC 31 ms
4,376 KB
testcase_18 AC 30 ms
4,376 KB
testcase_19 AC 30 ms
4,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
4,380 KB
testcase_31 AC 10 ms
4,376 KB
testcase_32 AC 11 ms
4,376 KB
testcase_33 AC 17 ms
4,376 KB
testcase_34 AC 1 ms
4,376 KB
testcase_35 AC 1 ms
4,376 KB
testcase_36 AC 2 ms
4,380 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) {
        ll p = A[i]/5000;
        if (p > Y) {
            A[i] -= Y*5000;
            Y = 0;
            break;
        }
        A[i] %= 5000;
        Y -= p;
    }
    sort(all(A));
    reverse(all(A));
    rep(i,N) {
        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