And Yet Another Bracket Sequence

题意翻译

有一个括号序列(不保证合法),你能够进行以下两个操作: 1. 在任意位置插入一个左括号或者右括号; 2. 将序列最末的括号移到最前。 经过若干次操作后,得到的**最短**的**合法**括号序列是什么?若多解,输出**字典序最小**的。 (`'('`<`')'`)

题目描述

Polycarpus has a finite sequence of opening and closing brackets. In order not to fall asleep in a lecture, Polycarpus is having fun with his sequence. He is able to perform two operations: - adding any bracket in any position (in the beginning, the end, or between any two existing brackets); - cyclic shift — moving the last bracket from the end of the sequence to the beginning. Polycarpus can apply any number of operations to his sequence and adding a cyclic shift in any order. As a result, he wants to get the correct bracket sequence of the minimum possible length. If there are several such sequences, Polycarpus is interested in the lexicographically smallest one. Help him find such a sequence. Acorrect bracket sequence is a sequence of opening and closing brackets, from which you can get a correct arithmetic expression by adding characters "1" and "+" . Each opening bracket must correspond to a closed one. For example, the sequences "(())()", "()", "(()(()))" are correct and ")(", "(()" and "(()))(" are not. The sequence $ a_{1} $ $ a_{2}...\ a_{n} $ is lexicographically smaller than sequence $ b_{1} $ $ b_{2}...\ b_{n} $ , if there is such number $ i $ from $ 1 $ to $ n $ , that $ a_{k}=b_{k} $ for $ 1<=k&lt;i $ and $ a_{i}&lt;b_{i} $ . Consider that "(" $ &lt; $ ")".

输入输出格式

输入格式


The first line contains Polycarpus's sequence consisting of characters "(" and ")". The length of a line is from $ 1 $ to $ 1000000 $ .

输出格式


Print a correct bracket sequence of the minimum length that Polycarpus can obtain by his operations. If there are multiple such sequences, print the lexicographically minimum one.

输入输出样例

输入样例 #1

()(())

输出样例 #1

(())()

输入样例 #2

()(

输出样例 #2

(())

说明

The sequence in the first example is already correct, but to get the lexicographically minimum answer, you need to perform four cyclic shift operations. In the second example you need to add a closing parenthesis between the second and third brackets and make a cyclic shift. You can first make the shift, and then add the bracket at the end.