結果
| 問題 |
No.1778 括弧列クエリ / Bracketed Sequence Query
|
| コンテスト | |
| ユーザー |
Schnee
|
| 提出日時 | 2021-12-07 03:59:16 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,631 bytes |
| コンパイル時間 | 184 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 16,512 KB |
| 最終ジャッジ日時 | 2024-07-07 10:16:39 |
| 合計ジャッジ時間 | 14,414 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | WA * 4 TLE * 2 -- * 21 |
ソースコード
import sys
input = sys.stdin.readline
def int_input():
return map(int,input().split())
n, q = int_input()
s = input()
def find_pair(x):
count_dis = 1
if s[x - 1] == "(":
for i in range(1, n):
if s[x - 1 + i] == "(":
count_dis += 1
else:
count_dis -= 1
if count_dis == 0:
return x + i
else:
for i in range(1, n):
if s[x - 1 - i] == ")":
count_dis += 1
else:
count_dis -= 1
if count_dis == 0:
return x - i
def find_set_b(x):
count_dis = 0
for i in range(1, x):
if s[x-1-i]==")":
count_dis -= 1
else:
count_dis += 1
if count_dis == 1:
return x - i
def find_set_t(x):
count_dis = 0
for i in range(1, n - x + 1):
if s[x-1+i]=="(":
count_dis -= 1
else:
count_dis += 1
if count_dis == 1:
return x + i
def compare_2set(x, y):
if min(x) <= min(y) and max(x) >= max(y):
return min(x), max(x)
elif min(y) <= min(x) and max(y) >= max(x):
return min(y), max(y)
else:
None
for _ in range(q):
a, b = int_input()
x, y = (a, find_pair(a)), (b, find_pair(b))
if ret:= compare_2set(x, y):
print(*ret)
else:
top, bottom = max(*x, *y), min(*x, *y)
a_b = find_set_b(bottom)
a_t = find_set_t(top)
if a_b and a_t:
print(a_b, a_t)
else:
print(-1)
Schnee