結果
問題 | No.1778 括弧列クエリ / Bracketed Sequence Query |
ユーザー | 沙耶花 |
提出日時 | 2021-12-07 00:14:33 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 265 ms / 2,000 ms |
コード長 | 2,398 bytes |
コンパイル時間 | 4,113 ms |
コンパイル使用メモリ | 269,328 KB |
実行使用メモリ | 38,600 KB |
最終ジャッジ日時 | 2024-07-07 09:56:06 |
合計ジャッジ時間 | 9,439 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
6,812 KB |
testcase_01 | AC | 62 ms
6,944 KB |
testcase_02 | AC | 68 ms
6,944 KB |
testcase_03 | AC | 54 ms
6,944 KB |
testcase_04 | AC | 64 ms
6,940 KB |
testcase_05 | AC | 80 ms
12,624 KB |
testcase_06 | AC | 44 ms
6,944 KB |
testcase_07 | AC | 13 ms
8,216 KB |
testcase_08 | AC | 167 ms
26,428 KB |
testcase_09 | AC | 29 ms
11,212 KB |
testcase_10 | AC | 83 ms
20,996 KB |
testcase_11 | AC | 67 ms
14,948 KB |
testcase_12 | AC | 83 ms
12,624 KB |
testcase_13 | AC | 159 ms
25,960 KB |
testcase_14 | AC | 77 ms
19,352 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 172 ms
26,124 KB |
testcase_17 | AC | 177 ms
26,076 KB |
testcase_18 | AC | 171 ms
26,144 KB |
testcase_19 | AC | 166 ms
26,276 KB |
testcase_20 | AC | 171 ms
26,176 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 103 ms
22,184 KB |
testcase_24 | AC | 110 ms
26,904 KB |
testcase_25 | AC | 132 ms
27,124 KB |
testcase_26 | AC | 265 ms
38,600 KB |
testcase_27 | AC | 121 ms
38,464 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for(int i=0;i<(n);i++) #define Inf 1000000001 string S; vector<vector<int>> ps(1,vector<int>(2,-1)); vector<vector<int>> E(1); void dfs(int cur,int &pos){ while(pos!=S.size()){ if(S[pos]=='('){ int to = E.size(); E[cur].push_back(to); E.push_back(vector<int>(1,cur)); ps.push_back(vector<int>(1,pos)); pos++; dfs(to,pos); } else{ ps[cur].push_back(pos); pos++; return; } } } struct lca{ vector<int> depth; vector<vector<int>> parents; int max_j=18; lca(int n,vector<vector<int>> &E){ rep(i,100){ if((1<<i)>E.size()){ max_j = i; break; } } depth.assign(E.size(),-1); parents.assign(E.size(),vector<int>(max_j,-1)); stack<int> s; s.push(n); depth[n] = 0; while(s.size()!=0){ int k = s.top(); s.pop(); for(int i=0;i<E[k].size();i++){ int x = E[k][i]; if(depth[x]!=-1)continue; s.push(x); depth[x] = depth[k]+1; for(int j=0;j<max_j;j++){ if(j==0){ parents[x][j] = k; } else{ parents[x][j] = parents[parents[x][j-1]][j-1]; } if(parents[x][j] == -1)break; } } } } int kth_parent(int u,int k){ for(int i=0;i<max_j;i++){ if(k==0)break; if(u==-1)break; if(k%2){ u = parents[u][i]; } k/=2; } return u; } int query(int u,int v){ if(depth[u]<depth[v])swap(u,v); u = kth_parent(u,depth[u]-depth[v]); if(u==v){ return u; } for(int i=max_j-1;i>=0;i--){ if(parents[u][i]!=parents[v][i]){ u = parents[u][i]; v = parents[v][i]; } } return parents[u][0]; } int get_distance(int u,int v){ return depth[u]+depth[v]-2*depth[query(u,v)]; } }; int main(){ int N,Q; cin>>N>>Q; cin>>S; int p = 0; dfs(0,p); /* rep(i,ps.size()){ cout<<i<<endl; rep(j,ps[i].size()){ cout<<ps[i][j]<<','; } cout<<endl; }*/ lca L(0,E); vector<int> pos(S.size()); rep(i,ps.size()){ if(ps[i][0]==-1)continue; rep(j,2)pos[ps[i][j]] = i; } rep(_,Q){ int a,b; scanf("%d %d",&a,&b); a--;b--; int l = L.query(pos[a],pos[b]); if(ps[l][0]==-1){ printf("-1\n"); } else{ int x = ps[l][0],y = ps[l][1]; if(x>y)swap(x,y); x++,y++; printf("%d %d\n",x,y); } } return 0; }