CF123C.Brackets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A two dimensional array is called a bracket array if each grid contains one of the two possible brackets — "(" or ")". A path through the two dimensional array cells is called monotonous if any two consecutive cells in the path are side-adjacent and each cell of the path is located below or to the right from the previous one.

A two dimensional array whose size equals n×mn×m is called a correct bracket array, if any string formed by writing out the brackets on some monotonous way from cell (1,1)(1,1) to cell (n,m)(n,m) forms a correct bracket sequence.

Let's define the operation of comparing two correct bracket arrays of equal size ( aa and bb ) like that. Let's consider a given two dimensional array of priorities ( cc ) — a two dimensional array of same size, containing different integers from 11 to nmnm . Let's find such position (i,j)(i,j) in the two dimensional array, that ai,jbi,ja_{i,j}≠b_{i,j} . If there are several such positions, let's choose the one where number ci,jc_{i,j} is minimum. If ai,j=a_{i,j}= "(", then a<b , otherwise a>b . If the position (i,j)(i,j) is not found, then the arrays are considered equal.

Your task is to find a kk -th two dimensional correct bracket array. It is guaranteed that for the given sizes of nn and mm there will be no less than kk two dimensional correct bracket arrays.

输入格式

The first line contains integers nn , mm and kk — the sizes of the array and the number of the sought correct bracket array ( 1<=n,m<=1001<=n,m<=100 , 1<=k<=10181<=k<=10^{18} ). Then an array of priorities is given, nn lines each containing mm numbers, number pi,jp_{i,j} shows the priority of character jj in line ii ( 1<=pi,j<=nm1<=p_{i,j}<=nm , all pi,jp_{i,j} are different).

Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.

输出格式

Print the kk -th two dimensional correct bracket array.

输入输出样例

  • 输入#1

    1 2 1
    1 2
    

    输出#1

    ()
    
  • 输入#2

    2 3 1
    1 2 3
    4 5 6
    

    输出#2

    (()
    ())
    
  • 输入#3

    3 2 2
    3 6
    1 4
    2 5
    

    输出#3

    ()
    )(
    ()
    

说明/提示

In the first sample exists only one correct two-dimensional bracket array.

In the second and in the third samples two arrays exist.

A bracket sequence is called regular if it is possible to obtain correct arithmetic expression by inserting characters «+» and «1» into this sequence. For example, sequences «(())()», «()» and «(()(()))» are regular, while «)(», «(()» and «(()))(» are not.

首页