CF1574A.Regular Bracket Sequences

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A bracket sequence is a string containing only characters "(" and ")". A regular bracket sequence is a bracket sequence that can be transformed into a correct arithmetic expression by inserting characters "1" and "+" between the original characters of the sequence. For example, bracket sequences "()()" and "(())" are regular (the resulting expressions are: "(1)+(1)" and "((1+1)+1)"), and ")(", "(" and ")" are not.

You are given an integer nn . Your goal is to construct and print exactly nn different regular bracket sequences of length 2n2n .

输入格式

The first line contains one integer tt ( 1t501 \le t \le 50 ) — the number of test cases.

Each test case consists of one line containing one integer nn ( 1n501 \le n \le 50 ).

输出格式

For each test case, print nn lines, each containing a regular bracket sequence of length exactly 2n2n . All bracket sequences you output for a testcase should be different (though they may repeat in different test cases). If there are multiple answers, print any of them. It can be shown that it's always possible.

输入输出样例

  • 输入#1

    3
    3
    1
    3

    输出#1

    ()()()
    ((()))
    (()())
    ()
    ((()))
    (())()
    ()(())
首页