結果
問題 | No.1015 おつりは要らないです |
ユーザー | risujiroh |
提出日時 | 2020-04-03 21:30:51 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 721 bytes |
コンパイル時間 | 1,700 ms |
コンパイル使用メモリ | 170,372 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 23:06:08 |
合計ジャッジ時間 | 3,555 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, x[3]; cin >> n >> x[0] >> x[1] >> x[2]; vector<int> a(n); for (auto&& e : a) { cin >> e; e = e / 1000 + 1; } array<int, 3> c{1, 5, 10}; for (int k = 3; k--; ) { for (auto&& e : a) { int t = min(e / c[k], x[k]); e -= t * c[k]; x[k] -= t; } for (int r = 9; r; --r) { for (auto&& e : a) { if (e % c[k] == r) { if (x[k]) { assert(e < c[k]); e = 0; --x[k]; } } } } } if (count(begin(a), end(a), 0) == n) { cout << "Yes\n"; } else { cout << "No\n"; } }