CF1239B.The World Is Just a Programming Task (Hard Version)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

This is a harder version of the problem. In this version, n300000n \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 ss is called correct if:

  • ss is empty;
  • ss is equal to "( tt )", where tt is correct bracket sequence;
  • ss is equal to t1t2t_1 t_2 , i.e. concatenation of t1t_1 and t2t_2 , where t1t_1 and t2t_2 are correct bracket sequences.

For example, "(()())", "()" are correct, while ")(" and "())" are not.

The cyclical shift of the string ss of length nn by kk ( 0k<n0 \leq k < n ) is a string formed by a concatenation of the last kk symbols of the string ss with the first nkn - k symbols of string ss . For example, the cyclical shift of string "(())()" by 22 equals "()(())".

Cyclical shifts ii and jj are considered different, if iji \ne j .

输入格式

The first line contains an integer nn ( 1n3000001 \le n \le 300\,000 ), the length of the string.

The second line contains a string, consisting of exactly nn 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 ll and rr ( 1l,rn1 \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 77 -th and 88 -th character, obtaining a string "()()()()()". The cyclical shifts by 0,2,4,6,80, 2, 4, 6, 8 of this string form a correct bracket sequence.

In the second example, after swapping 55 -th and 1010 -th character, we obtain a string ")(())()()(()". The cyclical shifts by 11,7,5,311, 7, 5, 3 of this string form a correct bracket sequence.

In the third example, swap of any two brackets results in 00 cyclical shifts being correct bracket sequences.

首页