結果

問題 No.868 ハイパー部分和問題
ユーザー shobonvipshobonvip
提出日時 2024-12-10 05:22:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,625 ms / 7,000 ms
コード長 2,659 bytes
コンパイル時間 4,981 ms
コンパイル使用メモリ 267,720 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-10 05:23:36
合計ジャッジ時間 49,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2,616 ms
5,248 KB
testcase_15 AC 2,611 ms
5,248 KB
testcase_16 AC 2,597 ms
5,248 KB
testcase_17 AC 2,625 ms
5,248 KB
testcase_18 AC 2,608 ms
5,248 KB
testcase_19 AC 1,244 ms
5,248 KB
testcase_20 AC 1,235 ms
5,248 KB
testcase_21 AC 1,230 ms
5,248 KB
testcase_22 AC 1,219 ms
5,248 KB
testcase_23 AC 1,225 ms
5,248 KB
testcase_24 AC 1,242 ms
5,248 KB
testcase_25 AC 1,279 ms
5,248 KB
testcase_26 AC 1,242 ms
5,248 KB
testcase_27 AC 1,236 ms
5,248 KB
testcase_28 AC 1,233 ms
5,248 KB
testcase_29 AC 1,561 ms
5,248 KB
testcase_30 AC 1,560 ms
5,248 KB
testcase_31 AC 1,539 ms
5,248 KB
testcase_32 AC 1,900 ms
5,248 KB
testcase_33 AC 1,865 ms
5,248 KB
testcase_34 AC 2,519 ms
5,248 KB
testcase_35 AC 2,515 ms
5,248 KB
testcase_36 AC 1,923 ms
5,248 KB
testcase_37 AC 1,900 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.12.10 05:13:57
**/

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef dynamic_modint<1> mint1;
typedef dynamic_modint<2> mint2;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)
#define all(v) v.begin(), v.end()

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

// isprime
bool is_prime(ll n){
	if (n == 1) return false;
	for (ll i = 2; i * i <= n; i++){
		if (n % i == 0) return false;
	}
	return true;
}


int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	random_device seed_gen;
	mt19937 engine(seed_gen());
	uniform_int_distribution<int> dist(9e8,1e9);
	int mod1, mod2;
	do {
		mod1 = dist(engine);
	}while(!is_prime(mod1));
	do {
		mod2 = dist(engine);
	}while(!is_prime(mod2) || mod1 == mod2);

	mint1::set_mod(mod1);
	mint2::set_mod(mod2);

	int n, k; cin >> n >> k;
	vector<int> a(n);
	rep(i,0,n) cin >> a[i];

	vector<mint1> f1(k+1);
	vector<mint2> f2(k+1);
	f1[0] = 1;
	f2[0] = 1;

	rep(i,0,n) {
		if (a[i] == 0) continue;
		vector<mint1> nf1(k+1);
		vector<mint2> nf2(k+1);
		rep(j,0,k+1) {
			nf1[j] += f1[j];
			nf2[j] += f2[j];
			if (j+a[i] <= k) {
				nf1[j+a[i]] += f1[j];
				nf2[j+a[i]] += f2[j];
			}
		}
		swap(nf1, f1);
		swap(nf2, f2);
	}

	int q; cin >> q;
	while(q--) {
		int x, v; cin >> x >> v;
		x--;
		if (a[x] != 0) {
			rep(j,0,k+1) {
				if (j-a[x] >= 0) {
					f1[j] -= f1[j-a[x]];
					f2[j] -= f2[j-a[x]];
				}
			}
		}
		a[x] = v;
		if (a[x] != 0) {
			vector<mint1> nf1(k+1);
			vector<mint2> nf2(k+1);
			rep(j,0,k+1) {
				nf1[j] += f1[j];
				nf2[j] += f2[j];
				if (j+a[x] <= k) {
					nf1[j+a[x]] += f1[j];
					nf2[j+a[x]] += f2[j];
				}
			}
			swap(nf1, f1);
			swap(nf2, f2);
		}
		if (f1[k].val() != 0 && f2[k].val() != 0) {
			cout << 1 << '\n';
		}else {
			cout << 0 << '\n';
		}
	}
}

0