Movatterモバイル変換


[0]ホーム

URL:



Codeforces
In EnglishПо-русски
Enter |Register



Codeforces Round 1012 (Div. 1)
Finished
→ Practice?
Want to solve the contest problems after the official contest ends? Just register for practice and you will be able to submit solutions.
→ Virtual participation
Virtual contest is a way to take part in past contest, as close as possible to participation on time. It is supported only ICPC mode for virtual contests.If you've seen these problems, a virtual contest is not for you - solve these problems in the archive.If you just want to solve some problem from a contest, a virtual contest is not for you - solve this problem in the archive.Never use someone else's code, read the tutorials or communicate with other person during a virtual contest.
→ Problem tags
constructive algorithms
*3200
No tag edit access
→ Contest materials
The problem statement has recently been changed.View the changes.
×
D. Conditional Operators
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In C++, the conditional operator?: is used as the value ofx?y:z is $$$y$$$ if $$$x$$$ is true; otherwise, the value is $$$z$$$. $$$x$$$, $$$y$$$, and $$$z$$$ may also be expressions. It is right-associated; that is,a?b:c?d:e is equivalent toa?b:(c?d:e). $$$0$$$ means false and $$$1$$$ means true.

Given a binary string with length $$$2n+1$$$, you need to show whether the value of the expression can be $$$1$$$ after inserting $$$n$$$ conditional operators into the string. You can use parentheses. For example, the string10101 can be transformed into(1?0:1)?0:1, whose value is $$$1$$$.

Input

The first line contains a single integer $$$t$$$ ($$$1 \le t \le 10\,000)$$$, the number of test cases. The description of the test cases follows.

In the first line of each test case, there is a single integer $$$n$$$ ($$$1 \le n \le 1.5 \cdot 10^5)$$$.

In the second line of each test case, there is a binary string of length $$$2n + 1$$$.

It is guaranteed that the sum of $$$n$$$ across all test cases does not exceed $$$1.5 \cdot 10^5$$$.

Output

For each test case, on the first line, outputYes if the string can be transformed into an expression of value $$$1$$$; otherwise, outputNo.

If the answer isYes, output the expression on the second line. You can use parentheses, but the order of the characters in the original string must remain the same. The length of your expression must be no more than $$$10n+1000$$$.

Example
Input
2
2
10101
2
00000
Output
Yes(1?0:1)?(0):1No
Note

The first test case — is the one mentioned in the problem description.

In the second test case, it is clear that regardless of how the conditional operator is used, the result will always be zero.


Codeforces (c) Copyright 2010-2025 Mike Mirzayanov
The only programming contests Web 2.0 platform
Server time:Apr/04/2025 16:13:41 (n2).
Desktop version, switch tomobile version.
Privacy Policy |Terms and Conditions
Supported by
TON
 
ITMO University
 
 
 
 
User lists
 
 
Name

[8]ページ先頭

©2009-2025 Movatter.jp