結果
| 問題 | No.3652 Range Bracket Sequence |
| コンテスト | |
| ユーザー |
yaaya
|
| 提出日時 | 2026-08-29 06:13:10 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 77 ms / 2,000 ms |
| + 34µs | |
| コード長 | 5,210 bytes |
| 記録 | |
| コンパイル時間 | 2,452 ms |
| コンパイル使用メモリ | 339,316 KB |
| 実行使用メモリ | 11,904 KB |
| 最終ジャッジ日時 | 2026-08-29 06:13:23 |
| 合計ジャッジ時間 | 11,684 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 57 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(ll i=a;i<b;i++)
#define rrep(i,a,b) for(ll i=a-1;i>=b;i--)
#define ll long long
#define ull unsigned ll
#define ld long double
#define bl __int128_t
#define fi first
#define se second
#define vel vector<ll>
#define vvel vector<vel>
#define pll pair<ll,ll>
#define vepll vector<pll>
#define vvepll vector<vepll>
#define ves vector<string>
#define vem vector<mint>
#define vvem vector<vem>
#define pmm pair<mint,mint>
#define cleout(i) cout<<fixed<<setprecision(i)
template<class T>using PQ=priority_queue<T,vector<T>,greater<T>>;
// 上 右 下 左
vector<int> di={-1, 0, 1, 0};
vector<int> dj={ 0, 1, 0,-1};
vector<int> dx={ 0, 1, 0,-1};
vector<int> dy={ 1, 0,-1, 0};
vector<int> ddx={ 1, 1, 1, 0, -1, -1, -1, 0 };
vector<int> ddy={ 1, 0, -1, -1, -1, 0, 1, 1 };
ll inf=1000000000000000000;//1e18
// LLONG_MAX
mt19937_64 rng((ull)chrono::steady_clock::now().time_since_epoch().count());
struct Combine {
inline pll operator()(const pll &a,const pll &b)const{
return {a.fi+b.fi,min(a.se,a.fi+b.se)};
}
};
template<typename T, typename Combine>
struct seg{
int N;
Combine combine;
T id;
vector<T> node;
int sz;
seg(vector<T> &a,Combine com,T ident){
sz=a.size();
combine=com;
id=ident;
ll m=1;
while(m<sz) m*=2;
node.resize(2*m,id);
rep(i,0,sz){
node[i+m]=a[i];
}
rrep(i,m,1){
node[i]=combine(node[2*i],node[2*i+1]);
}
N=m;
}
seg(ll n,Combine com,T ident){
sz=n;
combine=com;
id=ident;
ll m=1;
while(m<sz) m*=2;
node.resize(2*m,id);
N=m;
}
inline void chan(int i,T x){//i番目をxに変える
i+=N;
node[i]=x;
while(i>0){
i/=2;
node[i]=combine(node[2*i],node[2*i+1]);
}
}
inline T Ique(int l,int r){//[a,b)のmin
T resl=id,resr=id;
l+=N;
r+=N;
while(l<r){
if(l&1){//左のほうの右側なので
resl=combine(resl,node[l]);
l++;
}
if(r&1){//半開区間なのでrが右だといい
r--;
resr=combine(node[r],resr);
}
l/=2;
r/=2;
}
return combine(resl,resr);
}
inline T get(int i){
return node[i+N];
}
inline T all(){
return node[1];
}
template<typename F>
int upper(int l,T x,F check){//check(node[now],x)=1の最小のindex
if(l>=sz)return sz;
l+=N;
T now=id;
do{
while(l%2==0)l>>=1;//左にいるなら区間を大きくする
if(check(combine(now,node[l]),x)){//この区間でhitしてる
while(l<N){//降りていく
l=2*l;
if(!check(combine(now,node[l]),x)){//hitしないなら右に降りる
now=combine(now,node[l]);
l++;
}
}
return l-N;
}
now=combine(now,node[l]);//hitしなかったから右に行く
l++;
}while((l&-l)!=l);//2冪なら終わる(各層の右端が1,2,4,8,...なので)
return sz;
}
template<typename F>
inline int lower(int r,T x,F check){//check(node[now],x)=1の最大のindex
if(r<=0)return -1;
r+=N;
T now=id;
do{
r--;
while(r>1&&(r%2))r>>=1;//右側にいるなら区間を大きくする
if(check(combine(node[r],now),x)){
while(r<N){
r=2*r+1;
if(!check(combine(node[r],now),x)){//hitしないなら左に降りる
now=combine(node[r],now);
r--;
}
}
return r-N;
}
now=combine(node[r],now);
}while((r&-r)!=r);//2冪なら場外(r+1が右端になってるので)
return -1;
}
};
void _solve(){
ll N,Q;
cin>>N>>Q;
string S;
cin>>S;
seg<pll,Combine> st(N,Combine(),{0,inf});
rep(i,0,N){
if(S[i]!=')')st.chan(i,{1,1});
else st.chan(i,{-1,-1});
}
rep(q,0,Q){
ll k;
cin>>k;
if(k==1){
ll id,x;
cin>>id>>x;
id--;
if(S[id]==')'){
if(x==1){
st.chan(id,{1,1});
S[id]='(';
}
}else{
if(x==2){
st.chan(id,{-1,-1});
S[id]=')';
}
}
}else{
ll l,r;
cin>>l>>r;
l--;
pll ret=st.Ique(l,r);
ret.se=min(ret.se,0ll);
cout<<(r-l)+(ret.se)+(ret.se-ret.fi)<<"\n";
}
}
}
int main(){
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
ll _;
bool multitest=0;
if(multitest)cin>>_;
else _=1;
rep(__,0,_){
_solve();
}
}
yaaya