結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー titiatitia
提出日時 2021-12-09 03:24:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 2,033 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 102,956 KB
最終ジャッジ日時 2024-07-16 14:07:17
合計ジャッジ時間 17,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,332 ms
66,076 KB
testcase_01 AC 1,287 ms
59,904 KB
testcase_02 AC 1,252 ms
59,648 KB
testcase_03 AC 1,135 ms
57,300 KB
testcase_04 AC 1,465 ms
59,648 KB
testcase_05 AC 1,691 ms
55,040 KB
testcase_06 AC 949 ms
38,400 KB
testcase_07 AC 139 ms
17,664 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
S=input().strip()
Query=[list(map(int,input().split())) for i in range(Q)]

Qu=[]

TAI=[-1]*N

for i in range(N):
    s=S[i]

    if s=="(":
        Qu.append(i)
    else:
        x=Qu.pop()
        TAI[x]=i
        TAI[i]=x

E=[[] for i in range(N)]

for i in range(Q):
    x,y=Query[i]
    x-=1
    y-=1
    E[x].append(i)
    E[y].append(i)
    E[TAI[x]].append(i)
    E[TAI[y]].append(i)

    Query[i]=[x,y,TAI[x],TAI[y]]
    Query[i].sort()

# Segment tree(1-indexed,再帰を使わないもの)

A=TAI[:]
N=len(A)

def seg_function(x,y): # Segment treeで扱うfunction
    return min(x,y)

seg_el=1<<(N.bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(N): # Aを対応する箇所へupdate
    SEG[i+seg_el]=A[i]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])

def update(n,x,seg_el): # A[n]をxへ更新(反映)
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=1<<30

    while L<R:
        if L & 1:
            ANS=seg_function(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

def bisect_on_SEG(l,x):
    L=l+seg_el
    R=seg_el*2-1
    while L<R:
        if SEG[L]<=x:
            break
        if L & 1:
            L+=1
        L>>=1
        R>>=1
 
    if SEG[L]>x:
        return N
 
    while L<seg_el:
        if SEG[L*2]<=x:
            L=L*2
        else:
            L=L*2+1
 
    return L-seg_el 

for x,y,z,w in Query:
    k=bisect_on_SEG(w,x)
    if k==N:
        print(-1)
    else:
        ANS=[k+1,TAI[k]+1]
        ANS.sort()
        print(*ANS)
        
0