結果
問題 | No.842 初詣 |
ユーザー | cotton_fn_ |
提出日時 | 2019-06-28 21:58:55 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 16 ms / 2,000 ms |
コード長 | 1,300 bytes |
コンパイル時間 | 1,156 ms |
コンパイル使用メモリ | 113,320 KB |
最終ジャッジ日時 | 2025-01-07 05:31:16 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <iostream> #include <cstdio> #include <cstring> #include <vector> #include <deque> #include <queue> #include <array> #include <set> #include <map> #include <cmath> #include <algorithm> #include <numeric> #include <cassert> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cstdint> using namespace std; using i64 = int64_t; using i32 = int32_t; template<class T, class U> void init_n(vector<T>& v, size_t n, U x) { v = vector<T>(n, x); } template<class T> void init_n(vector<T>& v, size_t n) { init_n(v, n, T()); } template<class T> void read_n(vector<T>& v, size_t n, size_t o = 0) { v = vector<T>(n+o); for (size_t i=o; i<n+o; ++i) cin >> v[i]; } template<class T> void read_n(T a[], size_t n, size_t o = 0) { for (size_t i=o; i<n+o; ++i) cin >> a[i]; } template<class T> T gabs(const T& x) { return max(x, -x); } #define abs gabs i64 p[] = { 500, 100, 50, 10, 5, 1 }; vector<i64> a, dp; i64 g; int main() { read_n(a, 6); cin >> g; init_n(dp, g + 1); dp[0] = 1; for (i64 k = 0; k < 6; ++k) { auto dp_to = dp; for (i64 i = 0; i <= a[k]; ++i) { i64 x = p[k] * i; for (i64 j = 0; j <= g - x; ++j) { dp_to[j + x] += dp[j]; } } dp = dp_to; } cout << (dp[g] ? "YES" : "NO") << '\n'; return 0; }