結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー first_vilfirst_vil
提出日時 2022-01-21 16:51:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,438 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 116,736 KB
最終ジャッジ日時 2024-05-04 06:34:53
合計ジャッジ時間 14,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
53,120 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 34 ms
53,504 KB
testcase_22 AC 35 ms
53,632 KB
testcase_23 AC 418 ms
103,552 KB
testcase_24 AC 442 ms
110,080 KB
testcase_25 AC 578 ms
111,488 KB
testcase_26 WA -
testcase_27 AC 276 ms
116,736 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
d = 0
for i, c in enumerate(s):
    if c == "(":
        st.append(i)
        d += 1
    else:
        j = st.pop()
        pa[j] = i
        pa[i] = j
        d -= 1
        dep[j] = d
        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):
        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