#include <bits/stdc++.h>
#include "simurgh.h"
#define fi first
#define se second
using namespace std;
const int IDK = 0;
const int NOT_ROYAL = 1;
const int ROYAL = 2;
vector<pair<int, int>> graph[542];
bool vis[542];
bool dfsTree[4242];
int status[4242];
int par[542];
vector<int> cur {};
int find(int node) {
return (par[node] < 0 ? node : par[node] = find(par[node]));
}
int sz(int node) {
return -par[find(node)];
}
bool unite(int a, int b) {
a = find(a);
b = find(b);
if (a == b)
return false;
if (sz(a) < sz(b))
swap(a, b);
par[a] += par[b];
par[b] = a;
return true;
}
void resetDsu(int n) {
for (int i = 0; i < n; i++)
par[i] = -1;
}
void dfs(int node) {
vis[node] = true;
for (auto& x: graph[node]) {
if (!vis[x.fi]) {
//printf("add edge %d\n", x.se);
dfsTree[x.se] = true;
cur.push_back(x.se);
dfs(x.fi);
}
}
}
vector<int> find_roads(int n, vector<int> u, vector<int> v) {
int m = (int)u.size();
for (int i = 0; i < m; i++) {
graph[u[i]].push_back({v[i], i});
graph[v[i]].push_back({u[i], i});
}
memset(vis, false, sizeof(vis));
memset(dfsTree, false, sizeof(dfsTree));
dfs(0);
for (int i = 0; i < 2; i++) {
int orig = count_common_roads(cur);
bool done = false;
for (int idRem = 0; idRem < (int)cur.size(); idRem++) {
if (done)
break;
vector<int> newTree {};
for (auto& x: cur)
if (x != cur[idRem])
newTree.push_back(x);
for (int toAdd = 0; toAdd < m; toAdd++) {
if (!dfsTree[toAdd]) {
newTree.push_back(toAdd);
resetDsu(n);
bool ok = true;
for (auto& x: newTree) {
if (!unite(u[x], v[x]))
ok = false;
}
if (sz(0) != n)
ok = false;
if (ok) {
int newCnt = count_common_roads(newTree);
if (newCnt > orig) {
cur = newTree;
done = true;
break;
}
}
newTree.pop_back();
}
}
}
}
/*printf("ans ");
for (auto& x: ans)
printf("%d ", x);
printf("\n");*/
return cur;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
WA in grader: NO |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
WA in grader: NO |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
WA in grader: NO |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
correct |
2 |
Incorrect |
1 ms |
212 KB |
WA in grader: NO |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
WA in grader: NO |
2 |
Halted |
0 ms |
0 KB |
- |