結果
問題 | No.1015 おつりは要らないです |
ユーザー | minato |
提出日時 | 2020-04-03 21:47:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 1,797 bytes |
コンパイル時間 | 2,228 ms |
コンパイル使用メモリ | 181,824 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 23:08:03 |
合計ジャッジ時間 | 3,395 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
#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; }