結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー milanis48663220milanis48663220
提出日時 2021-12-29 21:02:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 4,112 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 133,808 KB
実行使用メモリ 32,144 KB
最終ジャッジ日時 2024-10-04 11:58:34
合計ジャッジ時間 13,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
5,248 KB
testcase_01 AC 283 ms
5,248 KB
testcase_02 AC 276 ms
5,248 KB
testcase_03 AC 290 ms
5,248 KB
testcase_04 AC 289 ms
5,248 KB
testcase_05 AC 206 ms
14,464 KB
testcase_06 AC 128 ms
5,760 KB
testcase_07 AC 14 ms
8,832 KB
testcase_08 AC 417 ms
30,836 KB
testcase_09 AC 47 ms
12,544 KB
testcase_10 AC 182 ms
23,940 KB
testcase_11 AC 164 ms
17,408 KB
testcase_12 AC 240 ms
14,464 KB
testcase_13 AC 404 ms
29,952 KB
testcase_14 AC 161 ms
21,836 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 447 ms
30,792 KB
testcase_17 AC 425 ms
30,916 KB
testcase_18 AC 416 ms
30,924 KB
testcase_19 AC 422 ms
30,924 KB
testcase_20 AC 409 ms
30,928 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 390 ms
26,048 KB
testcase_24 AC 437 ms
32,048 KB
testcase_25 AC 426 ms
32,048 KB
testcase_26 AC 441 ms
32,140 KB
testcase_27 AC 313 ms
32,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#include <stack>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

class Lca{
    public:
        vector<int> depth;
        vector<vector<int>> parent;
        vector<vector<int>> G;
        int root;
        int n;
        const int N_LOG_MAX = 25;
        bool initialized = false;

        Lca(vector<vector<int>> g, int _root){
            n = g.size();
            G = g;
            root = _root;
            parent = vector<vector<int>>(N_LOG_MAX, vector<int>(n));
            depth = vector<int>(n, 0);
        }

        void init(){
            initialized = true;
            dfs(root, -1, 0);
            for(int i = 0; i < N_LOG_MAX-1; i++){
                for(int v = 0; v < n; v++){
                    if(parent[i][v] < 0) parent[i+1][v] = -1;
                    else parent[i+1][v] = parent[i][parent[i][v]];
                }
            }
        }

        int lca(int u, int v){
            assert(initialized);
            if(depth[u] > depth[v]) swap(u, v);
            for(int i = 0; i < N_LOG_MAX; i++){
                if((depth[v] - depth[u]) >> i & 1){
                    v = parent[i][v];
                }
            }
            if(u == v) return u;
            for(int i = N_LOG_MAX-1; i >= 0; i--){
                if(parent[i][u] != parent[i][v]) {
                    u = parent[i][u];
                    v = parent[i][v];
                }
            }
            return parent[0][u];
        }

        int dist(int u, int v){
            int l = lca(u, v);
            return depth[u]+depth[v]-2*depth[l];
        }

    private:
        void dfs(int v, int p, int d){
            parent[0][v] = p;
            depth[v] = d;
            for(int i = 0; i < G[v].size(); i++){
                if(G[v][i] != p) dfs(G[v][i], v, d+1); 
            }
        }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, q; cin >> n >> q;
    int m = n/2;
    string s; cin >> s;
    vector<int> l(m+1), r(m+1);
    vector<vector<int>> g(m+1);
    stack<int> st;
    st.push(0);
    int idx = 1;
    for(int i = 0; i < n; i++){
        if(s[i] == '('){
            int par = st.top();
            st.push(idx);
            l[idx] = i;
            g[par].push_back(idx);
            g[idx].push_back(par);
            idx++;
        }else{
            r[st.top()] = i;
            st.pop();
        }
    }
    assert(st.size() == 1);
    auto lca = Lca(g, 0);
    lca.init();
    vector<int> l_inv(n, -1);
    vector<int> r_inv(n, -1);
    for(int i = 1; i <= m; i++) {
        l_inv[l[i]] = i;
        r_inv[r[i]] = i;
    }
    while(q--){
        int x, y; cin >> x >> y; x--; y--;
        int lx = max(l_inv[x], r_inv[x]);
        int ly = max(l_inv[y], r_inv[y]);
        int la = lca.lca(lx, ly);
        // cout << lx << ':' << ly << endl;
        if(la == 0) {
            cout << -1 << endl;
        }else{
            cout << l[la]+1 << ' ' << r[la]+1 << endl;
        }
    }
}
0