結果

問題 No.868 ハイパー部分和問題
ユーザー snow39snow39
提出日時 2019-08-17 17:39:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,668 ms / 7,000 ms
コード長 1,217 bytes
コンパイル時間 1,295 ms
コンパイル使用メモリ 102,384 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 12:51:18
合計ジャッジ時間 24,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1,577 ms
6,940 KB
testcase_15 AC 1,584 ms
6,948 KB
testcase_16 AC 1,579 ms
6,940 KB
testcase_17 AC 1,588 ms
6,940 KB
testcase_18 AC 1,579 ms
6,940 KB
testcase_19 AC 92 ms
6,940 KB
testcase_20 AC 92 ms
6,940 KB
testcase_21 AC 124 ms
6,940 KB
testcase_22 AC 124 ms
6,944 KB
testcase_23 AC 155 ms
6,940 KB
testcase_24 AC 158 ms
6,940 KB
testcase_25 AC 186 ms
6,940 KB
testcase_26 AC 187 ms
6,944 KB
testcase_27 AC 218 ms
6,944 KB
testcase_28 AC 219 ms
6,940 KB
testcase_29 AC 1,270 ms
6,940 KB
testcase_30 AC 1,249 ms
6,940 KB
testcase_31 AC 1,260 ms
6,940 KB
testcase_32 AC 1,577 ms
6,944 KB
testcase_33 AC 1,574 ms
6,944 KB
testcase_34 AC 1,668 ms
6,940 KB
testcase_35 AC 1,666 ms
6,944 KB
testcase_36 AC 1,050 ms
6,940 KB
testcase_37 AC 1,048 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <bitset>
#define MOD 1000000007
#define mkp make_pair
typedef long long ll;
using namespace std;

int N,K,Q;
vector<int> A;

vector<int> X,V;

const int BACKET=150;
int ans[15001];

void solve(int l,int r){
    vector<int> used(N,0);

    vector<int> v;
    for(int i=l;i<r;i++){
        used[X[i]]=1;
        v.push_back(X[i]);
    }
    sort(v.begin(),v.end());
    v.erase(unique(v.begin(),v.end()),v.end());

    bitset<15000+1> dp;
    dp.set(0);
    for(int i=0;i<N;i++){
        if(used[i]) continue;
        dp|=(dp<<A[i]);
    }

    for(int i=l;i<r;i++){
        A[X[i]]=V[i];
        bitset<15000+1> p=dp;
        for(int j=0;j<v.size();j++) p|=(p<<A[v[j]]);

        if(p[K]) ans[i]=1;
        else ans[i]=0;
    }
    return;
}

int main(){
  cin>>N>>K;
  A.resize(N);
  for(int i=0;i<N;i++) cin>>A[i];

  cin>>Q;
  X.resize(Q);
  V.resize(Q);
  for(int q=0;q<Q;q++){
      cin>>X[q]>>V[q];
      X[q]--;
  }

  for(int q=0;q<Q;q+=BACKET){
      solve(q,min(Q,q+BACKET));
  }

  for(int i=0;i<Q;i++) cout<<ans[i]<<endl;

  return 0;
}
0