結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー t_mkt_mk
提出日時 2022-03-18 15:27:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,083 ms / 2,000 ms
コード長 1,550 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 183,936 KB
実行使用メモリ 22,332 KB
最終ジャッジ日時 2024-10-02 22:21:30
合計ジャッジ時間 21,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
12,760 KB
testcase_01 AC 399 ms
12,636 KB
testcase_02 AC 387 ms
12,632 KB
testcase_03 AC 362 ms
12,752 KB
testcase_04 AC 397 ms
12,632 KB
testcase_05 AC 454 ms
16,000 KB
testcase_06 AC 269 ms
12,928 KB
testcase_07 AC 23 ms
13,440 KB
testcase_08 AC 928 ms
22,088 KB
testcase_09 AC 92 ms
14,976 KB
testcase_10 AC 394 ms
19,200 KB
testcase_11 AC 347 ms
17,024 KB
testcase_12 AC 487 ms
15,996 KB
testcase_13 AC 895 ms
22,032 KB
testcase_14 AC 346 ms
18,688 KB
testcase_15 AC 7 ms
11,392 KB
testcase_16 AC 956 ms
22,200 KB
testcase_17 AC 943 ms
22,204 KB
testcase_18 AC 950 ms
22,200 KB
testcase_19 AC 958 ms
22,332 KB
testcase_20 AC 944 ms
22,208 KB
testcase_21 AC 8 ms
11,520 KB
testcase_22 AC 7 ms
11,392 KB
testcase_23 AC 619 ms
20,200 KB
testcase_24 AC 676 ms
22,328 KB
testcase_25 AC 1,083 ms
22,328 KB
testcase_26 AC 953 ms
22,216 KB
testcase_27 AC 466 ms
22,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0;i < (n);i++)
using ll = long long;
using P =pair<int,int>;
ll INF = 1LL << 60;
int LEN = 1 << 20;
vector<int> seg(2*LEN,0);
void add(int ind,int val){
  ind += LEN;
  seg[ind] = val;
  while(ind > 0){
    ind /= 2;
    seg[ind] = max(seg[ind*2], seg[ind*2+1]);
  }
}
int maxim(int l,int r){
  l += LEN;
  r += LEN;
  int ans = 0;
  while(l < r){
    if(l & 1)ans = max(ans,seg[l++]);
    if(r & 1)ans = max(ans,seg[--r]);
    l /= 2;
    r /= 2;
  }
  return ans;
}
int main(){
  int n,q;
  cin >> n >> q;
  string S;
  cin >> S;
  stack<int> st;
  map<int,int> mp;
  rep(i,n){
    if(S[i] == '(')st.push(i+1);
    else{
      int a = st.top();
      add(a,i+1);
      mp[a] = i+1;
      mp[i+1] = a;
      st.pop();
    }
  }
  auto solve = [&](int x,int y){
    if(maxim(0,x+1) < y)return -1;
    int high = x + 1;
    int low = 0;
    int mid = (high + low)/2;
    while(high - low > 1){
      mid = (high + low)/2;
      //cout << high << " " << low << " "<<mid << " " << maxim(mid,x+1) << endl;
      if(maxim(mid,x+1) >= y)low = mid;
      else high = mid;
    }
    return low;
  };
  vector<int> ans;
  rep(i,q){
    int x,y;
    cin >> x >> y;
    int x_ = mp[x],y_=mp[y];
    if(x > x_)swap(x,x_);
    if(y > y_)swap(y,y_);
    x = min(x,y);
    x_ = max(x_,y_);
    //cout << "solve" << x << " " << x_ << endl;
    ans.push_back(solve(x,x_));
  }
  for(int p:ans){
    if(p == -1)cout << -1 << endl;
    else cout << p << " " << mp[p] << endl;
  }
  return 0;
}
0