結果

問題 No.2901 Logical Sum of Substring
ユーザー 沙耶花沙耶花
提出日時 2024-09-20 22:32:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 477 ms / 3,000 ms
コード長 1,567 bytes
コンパイル時間 5,425 ms
コンパイル使用メモリ 273,888 KB
実行使用メモリ 102,584 KB
最終ジャッジ日時 2024-09-20 22:33:13
合計ジャッジ時間 17,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 450 ms
102,496 KB
testcase_09 AC 437 ms
102,480 KB
testcase_10 AC 419 ms
102,468 KB
testcase_11 AC 466 ms
102,532 KB
testcase_12 AC 443 ms
102,492 KB
testcase_13 AC 444 ms
102,584 KB
testcase_14 AC 477 ms
102,476 KB
testcase_15 AC 448 ms
102,520 KB
testcase_16 AC 456 ms
102,380 KB
testcase_17 AC 456 ms
102,572 KB
testcase_18 AC 430 ms
102,448 KB
testcase_19 AC 425 ms
102,456 KB
testcase_20 AC 437 ms
102,336 KB
testcase_21 AC 469 ms
102,476 KB
testcase_22 AC 456 ms
102,524 KB
testcase_23 AC 416 ms
102,428 KB
testcase_24 AC 439 ms
102,536 KB
testcase_25 AC 417 ms
102,552 KB
testcase_26 AC 413 ms
99,620 KB
testcase_27 AC 437 ms
99,680 KB
testcase_28 AC 405 ms
99,608 KB
testcase_29 AC 396 ms
101,184 KB
testcase_30 AC 422 ms
101,172 KB
testcase_31 AC 398 ms
101,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL
int N,K;
struct Data{
	vector<pair<int,int>> pre,suf;
	int ans = Inf32;
	int sz = 0;
};

Data op(Data a,Data b){
	Data res;
	res.ans = min(a.ans,b.ans);
	res.sz = a.sz + b.sz;
	rep(i,a.suf.size()){
		rep(j,b.pre.size()){
			if(((a.suf[i].first | b.pre[j].first)==(1<<K)-1)){
				res.ans = min(res.ans,a.suf[i].second+b.pre[j].second);
			}
		}
	}
	res.pre = a.pre;
	rep(i,b.pre.size()){
		int v = b.pre[i].first | a.pre.back().first;
		if(v!=res.pre.back().first){
			res.pre.push_back({v,a.sz + b.pre[i].second});
		}
	}
	res.suf = b.suf;
	rep(i,a.suf.size()){
		int v = a.suf[i].first | b.suf.back().first;
		if(v!=res.suf.back().first){
			res.suf.push_back({v,a.suf[i].second + b.sz});
		}
	}
	return res;
}

Data e(){
	Data res;
	res.pre = {{0,0}},res.suf = {{0,0}};
	return res;
}
Data make(int v){
	Data res = e();
	res.sz = 1;
	if(v==0)return res;
	res.pre.push_back({v,1});
	res.suf.push_back({v,1});
	if(v==(1<<K)-1)res.ans = 1;
	return res;
}
int main(){
	
	cin>>N>>K;
	vector<Data> a(N);
	rep(i,N){
		int t;
		cin>>t;
		a[i] = make(t);
	}
	segtree<Data,op,e> seg(a);
	int _q;
	
	cin>>_q;
	rep(_,_q){
		int t,x,y;
		cin>>t>>x>>y;
		if(t==1){
			seg.set(x-1,make(y));
		}
		else{
			auto ret = seg.prod(x-1,y);
			if(ret.ans==Inf32)cout<<-1<<endl;
			else
			cout<<ret.ans<<endl;
		}
	}
			
	
	return 0;
}
0