A12876 | The World Is Just a Programming Task (Hard Version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is a harder version of the problem. In this version, $n \le 300\,000$ .
Vasya is an experienced developer of programming competitions' problems. As all great minds at some time, Vasya faced a creative crisis. To improve the situation, Petya gifted him a string consisting of opening and closing brackets only. Petya believes, that the beauty of the bracket string is a number of its cyclical shifts, which form a correct bracket sequence.
To digress from his problems, Vasya decided to select two positions of the string (not necessarily distinct) and swap characters located at this positions with each other. Vasya will apply this operation exactly once. He is curious what is the maximum possible beauty he can achieve this way. Please help him.
We remind that bracket sequence $s$ is called correct if:
- $s$ is empty;
- $s$ is equal to "( $t$ )", where $t$ is correct bracket sequence;
- $s$ is equal to $t_1 t_2$ , i.e. concatenation of $t_1$ and $t_2$ , where $t_1$ and $t_2$ are correct bracket sequences.
For example, "(()())", "()" are correct, while ")(" and "())" are not.
The cyclical shift of the string $s$ of length $n$ by $k$ ( $0 \leq k < n$ ) is a string formed by a concatenation of the last $k$ symbols of the string $s$ with the first $n - k$ symbols of string $s$ . For example, the cyclical shift of string "(())()" by $2$ equals "()(())".
Cyclical shifts $i$ and $j$ are considered different, if $i \ne j$ .
Vasya is an experienced developer of programming competitions' problems. As all great minds at some time, Vasya faced a creative crisis. To improve the situation, Petya gifted him a string consisting of opening and closing brackets only. Petya believes, that the beauty of the bracket string is a number of its cyclical shifts, which form a correct bracket sequence.
To digress from his problems, Vasya decided to select two positions of the string (not necessarily distinct) and swap characters located at this positions with each other. Vasya will apply this operation exactly once. He is curious what is the maximum possible beauty he can achieve this way. Please help him.
We remind that bracket sequence $s$ is called correct if:
- $s$ is empty;
- $s$ is equal to "( $t$ )", where $t$ is correct bracket sequence;
- $s$ is equal to $t_1 t_2$ , i.e. concatenation of $t_1$ and $t_2$ , where $t_1$ and $t_2$ are correct bracket sequences.
For example, "(()())", "()" are correct, while ")(" and "())" are not.
The cyclical shift of the string $s$ of length $n$ by $k$ ( $0 \leq k < n$ ) is a string formed by a concatenation of the last $k$ symbols of the string $s$ with the first $n - k$ symbols of string $s$ . For example, the cyclical shift of string "(())()" by $2$ equals "()(())".
Cyclical shifts $i$ and $j$ are considered different, if $i \ne j$ .
输入格式
The first line contains an integer $n$ ( $1 \le n \le 300\,000$ ), the length of the string.
The second line contains a string, consisting of exactly $n$ characters, where each of the characters is either "(" or ")".
The second line contains a string, consisting of exactly $n$ characters, where each of the characters is either "(" or ")".
输出格式
The first line should contain a single integer — the largest beauty of the string, which can be achieved by swapping some two characters.
The second line should contain integers $l$ and $r$ ( $1 \leq l, r \leq n$ ) — the indices of two characters, which should be swapped in order to maximize the string's beauty.
In case there are several possible swaps, print any of them.
The second line should contain integers $l$ and $r$ ( $1 \leq l, r \leq n$ ) — the indices of two characters, which should be swapped in order to maximize the string's beauty.
In case there are several possible swaps, print any of them.
输入输出样例
输入 #1
10 ()()())(()
输出 #1
5 8 7
输入 #2
12 )(()(()())()
输出 #2
4 5 10
输入 #3
6 )))(()
输出 #3
0 1 1
In the first example, we can swap $7$ -th and $8$ -th character, obtaining a string "()()()()()". The cyclical shifts by $0, 2, 4, 6, 8$ of this string form a correct bracket sequence.
In the second example, after swapping $5$ -th and $10$ -th character, we obtain a string ")(())()()(()". The cyclical shifts by $11, 7, 5, 3$ of this string form a correct bracket sequence.
In the third example, swap of any two brackets results in $0$ cyclical shifts being correct bracket sequences.
In the second example, after swapping $5$ -th and $10$ -th character, we obtain a string ")(())()()(()". The cyclical shifts by $11, 7, 5, 3$ of this string form a correct bracket sequence.
In the third example, swap of any two brackets results in $0$ cyclical shifts being correct bracket sequences.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted