-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHobby.C++
55 lines (45 loc) · 1.02 KB
/
Hobby.C++
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
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n;
cin >> n;
vector<int> p(n);
vector<bool> visited(n, false);
vector<int> F(n, 0);
string s;
for (int i = 0; i < n; i++) {
cin >> p[i];
p[i]--;
}
cin >> s;
for (int i = 0; i < n; i++) {
if (!visited[i]) {
vector<int> cycle;
int black_count = 0;
int current = i;
while (!visited[current]) {
visited[current] = true;
cycle.push_back(current);
if (s[current] == '0') {
black_count++;
}
current = p[current];
}
for (int node : cycle) {
F[node] = black_count;
}
}
}
for (int i = 0; i < n; i++) {
cout << F[i] << " ";
}
cout << endl;
}
int main() {
int t;
cin >> t;
while (t--) {
solve();
}
return 0;
}