Circular Spanning Tree

Circular Spanning Tree

Created by LXC on Fri Apr 26 12:06:13 2024

https://codeforces.com/problemset/problem/1682/D

ranting: 2000

tag: constructive algorithms, implementation, trees

problem

有 $T$ 组数据,每组数据有一个长度为 $n$ 的 $\tt 01$ 字符串,求构造一个 $n$ 个结点的树满足每个结点的度数的奇偶性符合 $\tt 01$ 串 $s$,且将这些点依次排列到一个环上,任意两条边不在非端点处相交。

solution

总的度为偶数,所以1的个数应该是偶数个。

一种构造的方式,让所有的1作为叶子,然后将1前面的0连接成链。链首是最开始的0(没有0就是1做链首)。总共有偶数条链。

让剩余链首连接其中一个长度大于1的链的链首。那么这个链首的度是偶数。

极端的情况下,所有n个数都是1,这种构造方法仍然可行。

code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

#include <bits/stdc++.h>
// #define SINGLE_INPUT
#define ll long long
#define ull unsigned long long
#define N 500005
#define MOD 998244353
using namespace std;

random_device seed;
ranlux48 engine(seed());
int random(int l, int r) {
uniform_int_distribution<> distrib(l, r);
return distrib(engine);
}
template<class t,class u> ostream& operator<<(ostream& os,const pair<t,u>& p) {
return os<<'['<<p.first<<", "<<p.second<<']';
}
template<class t> ostream& operator<<(ostream& os,const vector<t>& v) {
os<<'['; int s = 1;
for(auto e:v) { if (s) s = 0; else os << ", "; os << e; }
return os<<']';
}
template<class t,class u> ostream& operator<<(ostream& os,const map<t,u>& mp){
os<<'{'; int s = 1;
for(auto [x,y]:mp) { if (s) s = 0; else os << ", "; os<<x<<": "<<y; }
return os<<'}';
}

void sol() {
int n;
cin >> n;
string s;
cin >> s;
int c1 = count(s.begin(), s.end(), '1');
if (c1%2 || c1 == 0) {
cout << "NO\n";
} else {
cout << "YES\n";
int p = 0;
for (int i=0; i<n; i++) {
if (s[(i+n-1)%n] == '1' && s[i] == '0') p = i;
}
for (int i=0; i<n; i++) {
int j = i;
while (j<n && s[j] != '1') j++;
if (p%n != i && s[(i+n-1)%n] == '1') {
cout << p%n+1 << " " << i+1 << "\n";
}
for (int t=i; t<j; t++) {
cout << t%n+1 << " " << (t+1)%n+1 << "\n";
}
i = j;
}
}
}

int main() {
cout << setprecision(15) << fixed;
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
#ifndef SINGLE_INPUT
int t;
cin >> t;
while (t--) {
sol();
}
#else
sol();
#endif
return 0;
}