QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#697365 | #3846. Link-Cut Tree | Lynia | AC ✓ | 719ms | 33336kb | C++23 | 4.2kb | 2024-11-01 13:33:27 | 2024-11-01 13:33:28 |
Judging History
answer
///////////
// // //
// ////////////////////
// // //
//
///////////
//
//
// // // //////// /\ /////////
// // // // // // //
// //////// // // // // //
// // // // // // //
////////// //////// // // // /////////////
//#pragma GCC optimize(3,"Ofast","inline")
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <string>
#include <cstring>
#include <cmath>
#include <list>
#include <stack>
#include <array>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <random>
#include <numeric>
#include <functional>
//#include <Windows.h>
using namespace std;
#define fa(i,op,n) for (int i = op; i <= n; i++)
#define fb(j,op,n) for (int j = op; j >= n; j--)
#define pb push_back
#define HashMap unordered_map
#define HashSet unordered_set
#define var auto
#define all(i) i.begin(), i.end()
#define all1(i) i.begin() + 1,i.end()
#define endl '\n'
#define px first
#define py second
using VI = vector<int>;
using VL = vector<long long>;
using ll = long long;
using ull = unsigned long long;
using db = double;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
template<class T1, class T2>
ostream& operator<<(ostream& out, const pair<T1, T2>& p) {
out << '(' << p.first << ", " << p.second << ')';
return out;
}
template<typename T>
ostream& operator<<(ostream& out, const vector<T>& ve) {
for (T i : ve)
out << i << ' ';
return out;
}
template<class T1, class T2>
ostream& operator<<(ostream& out, const map<T1, T2>& mp) {
for (auto i : mp)
out << i << '\n';
return out;
}
template<typename ...T>
bool _debug(T... a) {
((cout << a << ' '), ...);
cout << endl;
return -1;
}
const int INF = 0x3f3f3f3f;
const ll LNF = 0x3f3f3f3f3f3f3f3f;
const int IINF = 0x7fffffff;
const int iinf = 0x80000000;
const ll LINF = 0x7FFFFFFFFFFFFFFF;
const ll linf = 0x8000000000000000;
int dx[8] = { 1, -1, 0, 0, 1, -1, 1, -1 };
int dy[8] = { 0, 0, 1, -1, 1, -1, -1, 1 };
//#include "Lynia.h"
namespace MyTools
{
}
namespace MT = MyTools;
//using Math = MT::Math<ll>;
//using mint = MT::ModInt<998244353>;
const int mod = 1e9 + 7;
const int N = 1e6 + 10;
struct node {
int u, v, w;
};
void solve(int CASE)
{
int n, m; cin >> n >> m;
var s = vector<int>(n + 1);
var e = vector<node>(m + 1);
fa(i, 1, n)s[i] = i;
var mp = map<pii, int>();
fa(i, 1, m) {
cin >> e[i].u >> e[i].v;
e[i].w = i;
mp[{e[i].u, e[i].v}] = i;
mp[{e[i].v, e[i].u}] = i;
}
sort(all1(e), [](node a, node b)->bool {
return a.w < b.w;
});
var find = [&](var find, int x) -> int {
if (x != s[x])return s[x] = find(find, s[x]);
return s[x];
};
var deg = vector<int>(n + 1);
var g = vector<vector<int>>(n + 1);
fa(i, 1, m) {
var& u = e[i].u;
var& v = e[i].v;
deg[u]++; deg[v]++;
g[u].pb(v); g[v].pb(u);
var e1 = find(find, u);
var e2 = find(find, v);
s[e1] = e2;
if (e1 == e2) {
var Q = queue<int>();
fa(i, 1, n)
if (deg[i] == 1)
Q.push(i);
while (Q.size()) {
var now = Q.front();
Q.pop();
for (var to : g[now]) {
deg[now]--;
deg[to]--;
if (deg[to] == 1)
Q.push(to);
}
}
var ans = set<int>();
var dfs = [&](var dfs, int now, int fa, int st)->void {
if (now == st and fa != 0)return;
for (int to : g[now]) {
if (deg[to] < 1 or to == fa)continue;
dfs(dfs, to, now,st);
ans.insert(mp[{now, to}]);
}
};
fa(i, 1, n) {
if (deg[i] > 1) {
dfs(dfs, i, 0, i);
break;
}
}
var res = vector<int>();
for (int i : ans)res.pb(i);
fa(i, 0, res.size() - 1) {
if (i == res.size() - 1)cout << res[i] << endl;
else cout << res[i] << ' ';
}
return;
}
}
cout << -1 << endl;
return;
}
int main()
{
//SetConsoleOutputCP(CP_UTF8);
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int _ = 1;
cin >> _;
fa(i, 1, _)solve(i);
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3560kb
input:
2 6 8 1 2 2 3 5 6 3 4 2 5 5 4 5 1 4 2 4 2 1 2 4 3
output:
2 4 5 6 -1
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 719ms
memory: 24092kb
input:
1658 9 20 6 4 5 8 1 7 2 3 3 8 3 1 4 8 5 3 7 6 1 6 4 9 4 1 9 3 2 5 4 5 8 9 1 8 4 2 5 7 3 6 14 78 13 12 10 8 2 10 6 13 2 14 13 1 14 10 9 6 2 13 8 3 9 8 5 6 14 12 8 1 9 14 9 5 12 6 5 10 3 12 10 4 8 5 9 10 6 8 1 6 12 4 3 13 1 5 10 3 13 9 10 13 2 5 4 7 7 1 7 6 9 3 2 12 1 10 9 1 1 14 3 1 3 4 11 1 11 6 7 1...
output:
2 5 8 3 5 7 1 3 4 2 3 4 2 3 4 7 13 1 3 4 5 9 3 4 7 12 1 2 3 8 10 11 2 3 5 7 12 13 14 15 16 1 2 3 5 1 2 4 1 3 4 1 2 3 1 2 3 10 11 15 1 5 6 1 5 7 1 2 3 4 -1 1 3 6 -1 1 2 3 5 -1 -1 6 8 9 10 11 16 1 2 6 2 3 4 -1 -1 7 8 12 13 18 -1 1 4 8 12 3 5 10 4 6 8 1 2 3 4 3 5 6 5 8 10 15 4 6 8 -1 1 2 3 5 6 1 3 4 1 ...
result:
ok 1658 lines
Test #3:
score: 0
Accepted
time: 672ms
memory: 33336kb
input:
10 100000 100000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 ...
output:
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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 ...
result:
ok 10 lines