CF1682D.Circular Spanning Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn nodes arranged in a circle numbered from 11 to nn in the clockwise order. You are also given a binary string ss of length nn .

Your task is to construct a tree on the given nn nodes satisfying the two conditions below or report that there such tree does not exist:

  • For each node ii (1in)(1 \le i \le n) , the degree of node is even if si=0s_i = 0 and odd if si=1s_i = 1 .
  • No two edges of the tree intersect internally in the circle. The edges are allowed to intersect on the circumference.

Note that all edges are drawn as straight line segments. For example, edge (u,v)(u, v) in the tree is drawn as a line segment connecting uu and vv on the circle.

A tree on nn nodes is a connected graph with n1n - 1 edges.

输入格式

The input consists of multiple test cases. The first line contains a single integer tt (1t2104)(1 \leq t \leq 2\cdot 10^4) — the number of test cases. Description of the test cases follows.

The first line of each test case contains a single integer nn (2n2105)(2 \leq n \leq 2\cdot 10^5) — the number of nodes.

The second line of each test case contains a binary string ss of length nn .

It is guaranteed that the sum of nn over all test cases does not exceed 21052\cdot 10^5 .

输出格式

For each test case, if there does not exist a tree that satisfies the given conditions, then output "NO" (without quotes), otherwise output "YES" followed by the description of tree.

You can output each letter in any case (for example, "YES", "Yes", "yes", "yEs", "yEs" will be recognized as a positive answer).

If there exists a tree, then output n1n - 1 lines, each containing two integers uu and vv (1u,vn,uv)(1 \leq u,v \leq n, u \neq v) denoting an edge between uu and vv in the tree. If there are multiple possible answers, output any.

输入输出样例

  • 输入#1

    3
    4
    0110
    2
    10
    6
    110110

    输出#1

    YES
    2 1
    3 4
    1 4
    NO
    YES
    2 3
    1 2
    5 6
    6 2
    3 4

说明/提示

In the first test case, the tree looks as follows:

In the second test case, there is only one possible tree with an edge between 11 and 22 , and it does not satisfy the degree constraints.

In the third test case,

The tree on the left satisfies the degree constraints but the edges intersect internally, therefore it is not a valid tree, while the tree on the right is valid.

首页