結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー first_vilfirst_vil
提出日時 2022-01-21 16:54:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 1,408 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 116,788 KB
最終ジャッジ日時 2024-11-25 15:18:15
合計ジャッジ時間 13,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
79,764 KB
testcase_01 AC 269 ms
79,492 KB
testcase_02 AC 268 ms
79,956 KB
testcase_03 AC 260 ms
78,796 KB
testcase_04 AC 282 ms
79,248 KB
testcase_05 AC 321 ms
91,420 KB
testcase_06 AC 222 ms
80,372 KB
testcase_07 AC 93 ms
83,520 KB
testcase_08 AC 621 ms
110,948 KB
testcase_09 AC 148 ms
88,824 KB
testcase_10 AC 321 ms
102,368 KB
testcase_11 AC 263 ms
94,152 KB
testcase_12 AC 344 ms
91,292 KB
testcase_13 AC 521 ms
109,972 KB
testcase_14 AC 281 ms
99,416 KB
testcase_15 AC 36 ms
54,372 KB
testcase_16 AC 604 ms
111,264 KB
testcase_17 AC 635 ms
111,140 KB
testcase_18 AC 658 ms
111,516 KB
testcase_19 AC 610 ms
111,264 KB
testcase_20 AC 562 ms
111,012 KB
testcase_21 AC 36 ms
53,868 KB
testcase_22 AC 36 ms
54,332 KB
testcase_23 AC 428 ms
103,092 KB
testcase_24 AC 456 ms
110,648 KB
testcase_25 AC 561 ms
111,988 KB
testcase_26 AC 552 ms
116,652 KB
testcase_27 AC 262 ms
116,788 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