結果
問題 | No.1861 Required Number |
ユーザー | 👑 hos.lyric |
提出日時 | 2022-03-04 23:00:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 91 ms / 2,500 ms |
コード長 | 2,046 bytes |
コンパイル時間 | 2,105 ms |
コンパイル使用メモリ | 121,060 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 23:09:15 |
合計ジャッジ時間 | 9,545 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 91 ms
6,940 KB |
testcase_04 | AC | 78 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 11 ms
6,948 KB |
testcase_25 | AC | 22 ms
6,940 KB |
testcase_26 | AC | 14 ms
6,940 KB |
testcase_27 | AC | 20 ms
6,944 KB |
testcase_28 | AC | 17 ms
6,940 KB |
testcase_29 | AC | 21 ms
6,944 KB |
testcase_30 | AC | 22 ms
6,944 KB |
testcase_31 | AC | 21 ms
6,944 KB |
testcase_32 | AC | 21 ms
6,944 KB |
testcase_33 | AC | 21 ms
6,940 KB |
testcase_34 | AC | 21 ms
6,940 KB |
testcase_35 | AC | 23 ms
6,944 KB |
testcase_36 | AC | 21 ms
6,944 KB |
testcase_37 | AC | 24 ms
6,944 KB |
testcase_38 | AC | 21 ms
6,940 KB |
testcase_39 | AC | 21 ms
6,944 KB |
testcase_40 | AC | 24 ms
6,940 KB |
testcase_41 | AC | 22 ms
6,940 KB |
testcase_42 | AC | 23 ms
6,944 KB |
testcase_43 | AC | 22 ms
6,944 KB |
testcase_44 | AC | 2 ms
6,940 KB |
04_evil_1.txt | AC | 1,698 ms
6,940 KB |
04_evil_2.txt | AC | 1,646 ms
6,940 KB |
04_evil_3.txt | AC | 1,360 ms
6,944 KB |
04_evil_4.txt | AC | 1,172 ms
6,940 KB |
ソースコード
#pragma GCC optimize ("Ofast") #pragma GCC optimize ("unroll-loops") #pragma GCC target ("avx") #include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; } template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; } constexpr int MAX_K = 100'010; using BS = bitset<MAX_K>; int N, K; vector<int> A; int ansAny; vector<int> ans; void solve(int l, int r, const BS &bs) { if (bs[K]) { ansAny = 1; return; } if (l + 1 == r) { if (!bs[K] && bs[K - A[l]]) { ansAny = 1; ans[l] = 1; } } else { const int mid = (l + r) / 2; { BS bbs = bs; for (int i = mid; i < r; ++i) { bbs |= bbs << A[i]; } solve(l, mid, bbs); } { BS bbs = bs; for (int i = l; i < mid; ++i) { bbs |= bbs << A[i]; } solve(mid, r, bbs); } } } int main() { for (; ~scanf("%d%d", &N, &K); ) { A.resize(N); for (int i = 0; i < N; ++i) { scanf("%d", &A[i]); } ansAny = 0; ans.assign(N, 0); BS bs; bs[0] = 1; solve(0, N, bs); // cerr<<"ans = ";pv(ans.begin(),ans.end()); int ansCnt = 0; for (int i = 0; i < N; ++i) if (ans[i]) { ++ansCnt; } printf("%d\n", ansAny ? ansCnt : -1); } return 0; }