結果
問題 | No.1778 括弧列クエリ / Bracketed Sequence Query |
ユーザー | CuriousFairy315 |
提出日時 | 2021-12-06 22:35:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,030 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 74,276 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-07-07 09:42:56 |
合計ジャッジ時間 | 12,366 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 316 ms
13,884 KB |
testcase_01 | AC | 310 ms
6,944 KB |
testcase_02 | AC | 307 ms
6,944 KB |
testcase_03 | AC | 288 ms
6,940 KB |
testcase_04 | AC | 307 ms
6,944 KB |
testcase_05 | AC | 646 ms
6,940 KB |
testcase_06 | AC | 236 ms
6,940 KB |
testcase_07 | AC | 14 ms
6,944 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 125 ms
6,940 KB |
testcase_10 | AC | 804 ms
6,944 KB |
testcase_11 | AC | 600 ms
6,940 KB |
testcase_12 | AC | 742 ms
6,940 KB |
testcase_13 | TLE | - |
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 | -- | - |
ソースコード
#include<iostream> #include<cstring> #include<algorithm> int MAX = 200020; int main() { int N, Q; std::string S; std::cin >> N >> Q >> S; int pair[MAX]; int left[MAX]; { int stack[MAX >> 1]; int len = 1; for (int i = 1;i <= S.length();++ i) { char c = S[i - 1]; if (c == '(') { stack[len++] = i; left[i] = left[i - 1] + 1; } else { pair[i] = stack[--len]; pair[pair[i]] = i; left[i] = left[i - 1]; } } } while(Q --> 0) { int x, y; std::cin >> x >> y; if (x < y) { int l = std::min(x, pair[x]); int r = std::max(y, pair[y]); x = l; y = r; } else { int l = std::min(y, pair[y]); int r = std::max(x, pair[x]); x = l; y = r; } for (int i = x;i >= 0; -- i) { if (pair[i] >= y) { std::cout << i << ' ' << pair[i] << std::endl; goto cont; } if (i >= 30 && left[i] - left[i - 30] == 30 && pair[i - 30] < y) i -= 30; } std::cout << -1 << std::endl; cont:; } return 0; }