結果
問題 |
No.868 ハイパー部分和問題
|
ユーザー |
![]() |
提出日時 | 2025-04-15 22:10:30 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 584 bytes |
コンパイル時間 | 2,504 ms |
コンパイル使用メモリ | 194,804 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-04-15 22:11:58 |
合計ジャッジ時間 | 11,608 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | AC * 14 TLE * 1 -- * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N, K; cin >> N >> K; vector<int> A(N); for (int i = 0; i < N; ++i) { cin >> A[i]; } int Q; cin >> Q; while (Q--) { int x, v; cin >> x >> v; x--; // Convert to 0-based index A[x] = v; bitset<15001> dp; dp[0] = 1; for (int a : A) { if (a == 0) continue; dp |= dp << a; } cout << (dp[K] ? 1 : 0) << '\n'; } return 0; }