結果
問題 | No.1802 Range Score Query for Bracket Sequence |
ユーザー | ytqm3 |
提出日時 | 2022-01-07 22:43:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,077 bytes |
コンパイル時間 | 2,228 ms |
コンパイル使用メモリ | 204,188 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2024-11-14 08:57:49 |
合計ジャッジ時間 | 22,086 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,640 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 419 ms
6,816 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | TLE | - |
testcase_18 | WA | - |
testcase_19 | TLE | - |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
10,016 KB |
ソースコード
#include<bits/stdc++.h> typedef uint64_t u64; typedef int64_t i64; using namespace std; template<typename T> void scan_(vector<T>& a){ for(auto& v:a){ cin>>v; } } template<typename T> void scan_(T& a){ cin>>a; } void scan(){} template<typename T,class... Args> void scan(T& n,Args&... args){ scan_(n),scan(args...); } template<typename T> void println(T n){ cout<<n<<"\n"; } template<typename T,class... Args> void println(T n,Args... args){ cout<<n<<" ",println(args...); } template<typename T> void println(vector<T> v){ for(size_t i=0;i<v.size();++i){ cout<<v[i]<<" \n"[i==v.size()-1]; } } template<u64 mod> struct modint{ u64 val; modint(i64 val_=0):val((val_%i64(mod)+i64(mod))%i64(mod)){} modint operator-(){ return (val==0)?0:mod-val; } modint operator+(modint rhs){ return modint(*this)+=rhs; } modint operator-(modint rhs){ return modint(*this)-=rhs; } modint operator*(modint rhs){ return modint(*this)*=rhs; } modint operator/(modint rhs){ return modint(*this)/=rhs; } modint operator^(i64 rhs){ return modint(*this)^=rhs; } modint &operator+=(modint rhs){ val+=rhs.val,val-=((val>=mod)?mod:0); return (*this); } modint &operator-=(modint rhs){ val+=((val<rhs.val)?mod:0),val-=rhs.val; return (*this); } modint &operator*=(modint rhs){ val=val*rhs.val%mod; return (*this); } modint &operator/=(modint rhs){ return (*this)*=rhs^(mod-2); } modint &operator^=(i64 rhs){ modint res=1,now=(*this); while(rhs){ res*=((rhs&1)?now:1),now*=now,rhs>>=1; } return (*this)=res; } bool operator==(modint rhs){ return val==rhs.val; } bool operator!=(modint rhs){ return val!=rhs.val; } friend std::ostream &operator<<(std::ostream& os,modint x){ return os<<(x.val); } friend std::istream &operator>>(std::istream& is,modint& x){ u64 t; is>>t,x=t; return is; } }; template<typename T> struct BIT{ int N; vector<T> dat; BIT(int size):N(size+1),dat(size+1){}; void add(int k,T x){ for(++k;k<N;k+=k&(-k)){ dat[k]+=x; } } T sum_(int k){ T res=0; for(;k>0;k-=k&(-k)){ res+=dat[k]; } return res; } T sum(int l,int r){ return sum_(r)-sum_(l); } }; int main(){ constexpr u64 mod=1000000007; typedef modint<mod> mint; int N,Q; string S; scan(N,Q,S); BIT<int> bt(N-1); for(int i=0;i<N-1;++i){ int k=(S[i]=='(' && S[i+1]==')'); bt.add(i,k); } for(int _=0;_<Q;++_){ int t; scan(t); if(t==1){ int i; scan(i); i--; S[i]=(S[i]=='('?')':'('); if(i!=0){ if(S[i-1]=='(' && S[i]=='('){ bt.add(i-1,-1); } if(S[i-1]=='(' && S[i]==')'){ bt.add(i-1,1); } } if(i!=N-1){ if(S[i]==')' && S[i+1]==')'){ bt.add(i-1,-1); } if(S[i]=='(' && S[i+1]==')'){ bt.add(i,1); } } } else{ int l,r; scan(l,r); l--,r--; println(bt.sum(l,r)); } } }