結果

問題 No.2901 Logical Sum of Substring
ユーザー 沙耶花沙耶花
提出日時 2024-09-20 22:28:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,548 bytes
コンパイル時間 5,382 ms
コンパイル使用メモリ 275,520 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-09-20 22:28:43
合計ジャッジ時間 17,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
};

Data op(Data a,Data b){
	Data res;
	res.ans = min(a.ans,b.ans);
	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.pre.back().second + 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.suf.back().second});
		}
	}
	return res;
}

Data e(){
	Data res;
	res.pre = {{0,0}},res.suf = {{0,0}};
	return res;
}
Data make(int v){
	Data res = e();
	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