結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー SSRSSSRS
提出日時 2021-12-07 00:10:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 2,138 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 182,456 KB
実行使用メモリ 17,384 KB
最終ジャッジ日時 2024-07-07 09:52:39
合計ジャッジ時間 11,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
5,248 KB
testcase_01 AC 301 ms
5,376 KB
testcase_02 AC 306 ms
5,376 KB
testcase_03 AC 293 ms
5,376 KB
testcase_04 AC 304 ms
5,376 KB
testcase_05 AC 201 ms
6,944 KB
testcase_06 AC 139 ms
6,944 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 395 ms
11,264 KB
testcase_09 AC 41 ms
6,940 KB
testcase_10 AC 163 ms
9,276 KB
testcase_11 AC 150 ms
7,296 KB
testcase_12 AC 218 ms
6,940 KB
testcase_13 AC 359 ms
11,056 KB
testcase_14 AC 144 ms
8,524 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 376 ms
11,148 KB
testcase_17 AC 403 ms
11,280 KB
testcase_18 AC 377 ms
11,288 KB
testcase_19 AC 384 ms
11,276 KB
testcase_20 AC 390 ms
11,280 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 359 ms
8,512 KB
testcase_24 AC 349 ms
10,016 KB
testcase_25 AC 358 ms
9,888 KB
testcase_26 AC 378 ms
17,260 KB
testcase_27 AC 341 ms
17,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct lowest_common_ancestor{
    vector<int> p, sz, in, next;
    void dfs1(vector<vector<int>> &c, int v = 0){
        sz[v] = 1;
        for (int &w : c[v]){
            dfs1(c, w);
            sz[v] += sz[w];
            if (sz[w] > sz[c[v][0]]){
                swap(w, c[v][0]);
            }
        }
    }
    void dfs2(vector<vector<int>> &c, int &t, int v = 0){
        in[v] = t;
        t++;
        for (int w : c[v]){
            if (w == c[v][0]){
                next[w] = next[v];
            } else {
                next[w] = w;
            }
            dfs2(c, t, w);
        }
    }
    lowest_common_ancestor(vector<int> &p, vector<vector<int>> &c): p(p){
        int N = p.size();
        sz = vector<int>(N);
        dfs1(c);
        in = vector<int>(N);
        next = vector<int>(N, 0);
        int t = 0;
        dfs2(c, t);
    }
    int lca(int u, int v){
        while (1){
            if (in[u] > in[v]){
                swap(u, v);
            }
            if (next[u] == next[v]){
                return u;
            }
            v = p[next[v]];
        }
    }
};
int main(){
   int N, Q;
  cin >> N >> Q;
  string S;
  cin >> S;
  vector<int> a;
  vector<int> b(N / 2);
  vector<vector<int>> c(N / 2 + 1);
  stack<pair<int, int>> st;
  st.push(make_pair(-1, -1));
  for (int i = 0; i < N; i++){
    if (S[i] == '('){
      if (!st.empty()){
        c[st.top().first + 1].push_back(a.size() + 1);
      }
      st.push(make_pair(a.size(), i));
      a.push_back(i);
    }
    if (S[i] == ')'){
      b[st.top().first] = i;
      st.pop();
    }
  }
  vector<int> pos(N);
  for (int i = 0; i < N / 2; i++){
    pos[a[i]] = i + 1;
    pos[b[i]] = i + 1;
  }
  vector<int> p(N / 2 + 1, -1);
  for (int i = 0; i <= N / 2; i++){
    for (int j : c[i]){
      p[j] = i;
    }
  }
  lowest_common_ancestor T(p, c);
  for (int i = 0; i < Q; i++){
    int x, y;
    cin >> x >> y;
    x--;
    y--;
    int r = T.lca(pos[x], pos[y]);
    if (r == 0){
      cout << -1 << endl;
    } else {
      cout << a[r - 1] + 1 << ' ' << b[r - 1] + 1 << endl;
    }
  }
}
0