結果

問題 No.2762 Counting and Deleting
ユーザー kotatsugamekotatsugame
提出日時 2024-05-17 21:51:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 4,000 ms
コード長 1,630 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 91,368 KB
実行使用メモリ 12,976 KB
最終ジャッジ日時 2024-05-17 21:51:14
合計ジャッジ時間 3,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 132 ms
12,792 KB
testcase_08 AC 126 ms
12,900 KB
testcase_09 AC 125 ms
12,820 KB
testcase_10 AC 128 ms
12,868 KB
testcase_11 AC 144 ms
12,796 KB
testcase_12 AC 137 ms
12,916 KB
testcase_13 AC 143 ms
12,976 KB
testcase_14 AC 140 ms
12,800 KB
testcase_15 AC 102 ms
12,908 KB
testcase_16 AC 112 ms
12,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<cassert>
#include<atcoder/segtree>
#include<atcoder/modint>
using namespace std;
#include<array>
template<typename T,unsigned int N>
struct Matrix{
	array<array<T,N>,N>dat;
	array<T,N>&operator[](int i){return dat[i];}
	const array<T,N>&operator[](int i)const{return dat[i];}
	Matrix(){for(int i=0;i<N;i++)dat[i].fill(T(0));}
	static Matrix eye(){
		Matrix res;
		for(int i=0;i<N;i++)res[i][i]=1;
		return res;
	}
	Matrix operator+(const Matrix&A)const{
		Matrix res;
		for(int i=0;i<N;i++)for(int j=0;j<N;j++)
			res[i][j]=dat[i][j]+A[i][j];
		return res;
	}
	Matrix operator*(const Matrix&A)const{
		Matrix res;
		for(int i=0;i<N;i++)for(int k=0;k<N;k++)for(int j=0;j<N;j++)
			res[i][j]+=dat[i][k]*A[k][j];
		return res;
	}
	Matrix pow(long long n)const{
		Matrix a=*this,res=eye();
		for(;n;a=a*a,n>>=1)if(n&1)res=res*a;
		return res;
	}
};
using mint=atcoder::modint998244353;
using mat=Matrix<mint,3>;
mat op(mat a,mat b){return a*b;}
mat e(){return mat::eye();}
set<int>rest;
mat U,A,B;
int N,Q;
string S;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	U=mat::eye();
	A[0][2]=1;
	A[1][1]=1;
	A[2][2]=2;A[2][0]=-1;
	B[0][0]=1;
	B[1][2]=1;
	B[2][2]=2;B[2][1]=-1;
	cin>>N>>Q>>S;
	vector<mat>init(N);
	for(int i=0;i<N;i++)
	{
		rest.insert(i);
		init[i]=S[i]=='0'?A:B;
	}
	atcoder::segtree<mat,op,e>seg(init);
	for(;Q--;)
	{
		int T,l,r;cin>>T>>l>>r;l--;
		if(T==1)
		{
			auto it=rest.lower_bound(l);
			while(it!=rest.end()&&*it<r)
			{
				seg.set(*it,U);
				it=rest.erase(it);
			}
		}
		else
		{
			mat ret=seg.prod(l,r);
			cout<<ret[1][2].val()<<"\n";
		}
	}
}
0