結果

問題 No.868 ハイパー部分和問題
ユーザー lam6er
提出日時 2025-04-15 22:14:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 528 bytes
コンパイル時間 3,690 ms
コンパイル使用メモリ 195,132 KB
実行使用メモリ 11,048 KB
最終ジャッジ日時 2025-04-15 22:16:47
合計ジャッジ時間 12,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 2
other AC * 14 TLE * 1 -- * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAX_K = 15001;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    for (int& a : A) cin >> a;

    int Q;
    cin >> Q;
    while (Q--) {
        int x, v;
        cin >> x >> v;
        A[x-1] = v;

        bitset<MAX_K> dp;
        dp[0] = 1;
        for (int a : A) {
            if (a > K) continue;
            dp |= dp << a;
        }
        cout << dp[K] << '\n';
    }

    return 0;
}
0