結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー first_vilfirst_vil
提出日時 2022-01-21 16:54:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 1,408 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 116,572 KB
最終ジャッジ日時 2024-05-04 06:42:40
合計ジャッジ時間 14,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
79,756 KB
testcase_01 AC 296 ms
79,400 KB
testcase_02 AC 279 ms
79,568 KB
testcase_03 AC 254 ms
78,692 KB
testcase_04 AC 273 ms
79,128 KB
testcase_05 AC 325 ms
91,524 KB
testcase_06 AC 222 ms
80,500 KB
testcase_07 AC 101 ms
83,592 KB
testcase_08 AC 660 ms
110,704 KB
testcase_09 AC 163 ms
88,828 KB
testcase_10 AC 337 ms
102,704 KB
testcase_11 AC 266 ms
94,276 KB
testcase_12 AC 377 ms
91,472 KB
testcase_13 AC 557 ms
110,104 KB
testcase_14 AC 281 ms
99,340 KB
testcase_15 AC 37 ms
53,944 KB
testcase_16 AC 651 ms
111,392 KB
testcase_17 AC 655 ms
110,884 KB
testcase_18 AC 588 ms
111,328 KB
testcase_19 AC 644 ms
111,272 KB
testcase_20 AC 619 ms
110,880 KB
testcase_21 AC 38 ms
53,536 KB
testcase_22 AC 37 ms
53,812 KB
testcase_23 AC 437 ms
103,184 KB
testcase_24 AC 502 ms
110,552 KB
testcase_25 AC 593 ms
111,948 KB
testcase_26 AC 579 ms
116,376 KB
testcase_27 AC 277 ms
116,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import enum
import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n, q = mi()
n += 2
s = "(" + input() + ")"

logn = 18
nxt = [[-1] * n for i in range(logn + 1)]
st = []
pa = [-1] * n
dep = [0] * n
for i, c in enumerate(s):
    if c == "(":
        st.append(i)
    else:
        j = st.pop()
        pa[j] = i
        pa[i] = j
        dep[j] = len(st)
        if st:
            nxt[0][j] = st[-1]

for j in range(logn):
    for i in range(n):
        if nxt[j][i] != -1:
            nxt[j + 1][i] = nxt[j][nxt[j][i]]

for _ in range(q):
    x, y = mi()
    if pa[x] < x:
        x = pa[x]
    if pa[y] < y:
        y = pa[y]

    if dep[x] > dep[y]:
        x, y = y, x
    for j in range(logn, -1, -1):
        if dep[y] - 2 ** j >= dep[x]:
            y = nxt[j][y]

    if x == y:
        ans = x
    else:
        for j in range(logn, -1, -1):
            if nxt[j][x] != nxt[j][y]:
                x = nxt[j][x]
                y = nxt[j][y]
        ans = nxt[0][x]
    if ans == 0:
        print(-1)
    else:
        print(ans, pa[ans])
0