QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#137908 | #6729. Unrooted Trie | mshcherba# | AC ✓ | 571ms | 113020kb | C++17 | 1.7kb | 2023-08-10 18:57:27 | 2023-08-10 18:57:28 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define SZ(a) (int)a.size()
#define ALL(a) a.begin(), a.end()
#define FOR(i, a, b) for (int i = (a); i<(b); ++i)
#define RFOR(i, b, a) for (int i = (b)-1; i>=(a); --i)
#define MP make_pair
#define PB push_back
#define F first
#define S second
#define FILL(a, b) memset(a, b, sizeof(a))
typedef long long LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
const int MAX = 1 << 17;
const int ALP = 26;
vector<int> g[MAX][ALP];
int tin[MAX], tout[MAX], timer;
void dfs(int v, int p) {
tin[v] = timer++;
FOR(c, 0, ALP) {
for (int to : g[v][c]) {
if (to != p) {
dfs(to, v);
}
}
}
tout[v] = timer;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
FOR(i, 0, n - 1) {
int u, v;
char c;
cin >> u >> v >> c;
u--;
v--;
g[u][c - 'a'].push_back(v);
g[v][c - 'a'].push_back(u);
}
timer = 0;
dfs(0, -1);
vector<int> pref(n + 1);
bool bad = false;
int k = 0;
FOR(i, 0, n) {
FOR(c, 0, ALP) {
if (SZ(g[i][c]) > 2) {
bad = true;
}
else if (SZ(g[i][c]) == 2) {
for (int j : g[i][c]) {
if (tin[j] > tin[i]) {
pref[tin[j]]++;
pref[tout[j]]--;
}
else {
pref[tin[0]]++;
pref[tout[0]]--;
pref[tin[i]]--;
pref[tout[i]]++;
}
}
k++;
}
}
}
int ans = 0;
FOR(i, 0, n) {
pref[i + 1] += pref[i];
assert(pref[i] <= k);
if (pref[i] == k) {
ans++;
}
}
cout << (bad ? 0 : ans) << "\n";
FOR(i, 0, n) {
FOR(c, 0, ALP) {
g[i][c].clear();
}
}
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
详细
Test #1:
score: 100
Accepted
time: 9ms
memory: 83456kb
input:
2 6 3 1 a 3 2 a 3 4 b 4 5 c 4 6 d 6 3 1 a 3 2 a 3 4 b 5 4 c 6 4 c
output:
2 0
result:
ok 2 number(s): "2 0"
Test #2:
score: 0
Accepted
time: 571ms
memory: 113020kb
input:
1112 19 15 18 a 7 18 c 11 14 b 10 17 b 8 14 a 1 3 b 12 2 a 16 3 c 16 4 b 2 3 a 15 5 a 3 18 d 16 9 a 18 13 b 8 4 b 17 7 a 9 6 a 13 19 a 52 8 32 a 14 51 a 30 52 a 48 36 b 27 39 c 39 51 b 35 15 a 51 52 d 45 51 e 39 26 a 20 12 b 34 18 a 9 12 e 25 5 a 9 13 b 41 51 c 1 52 n 33 14 c 22 30 b 17 4 b 12 52 c ...
output:
15 49 22 68 34 17 28 27 3 4 34 70 37 39 19 24 58 8 16 14 10 73 73 65 35 45 33 81 46 35 78 49 22 13 26 10 33 48 47 3 9 50 8 37 15 84 23 75 26 35 35 61 65 58 30 56 11 8 39 60 88 40 56 17 42 62 12 11 2 59 22 54 14 91 87 1 80 11 45 69 80 33 87 46 56 62 54 80 7 4 48 20 55 19 9 4 38 39 89 35 63 46 24 7 52...
result:
ok 1112 numbers