QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#874466 | #852. Jellyfish | asdfsdf# | AC ✓ | 171ms | 24344kb | C++23 | 1.7kb | 2025-01-28 06:25:01 | 2025-01-28 06:25:03 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<pair<int, int>> st;
#define MAX 1010101
vector<int> adj[MAX];
int p[MAX];
int find(int a) {
if (p[a] == a) return a;
return p[a] = find(p[a]);
}
bool uni(int a, int b) {
a = find(a);
b = find(b);
if (a == b) return false;
p[a] = b;
return true;
}
vector<int> path;
bool dfs(int x, int e, int p = 0) {
path.push_back(x);
if (x == e) return true;
for (auto v : adj[x]) if (v != p && dfs(v, e, x)) return true;
path.pop_back();
return false;
}
int chk[MAX];
int dp[MAX];
int sz[MAX];
void calc(int x, int p = 0) {
dp[x] = 0;
for (auto v : adj[x]) {
if (~chk[v]) continue;
if (v == p) continue;
sz[x] = 1;
calc(v, x);
dp[x] += dp[v];
}
if (!sz[x]) dp[x] = 1;
}
void solve() {
int N;
cin >> N;
int i, a, b;
int s, t;
s = t = 0;
path.clear();
for (i = 1; i <= N; i++) p[i] = i, dp[i] = sz[i] = 0, adj[i].clear(), chk[i] = -1;
for (i = 1; i <= N; i++) {
cin >> a >> b;
if (uni(a, b)) {
adj[a].push_back(b);
adj[b].push_back(a);
}
else s = a, t = b;
}
assert(s && t);
dfs(s, t);
int M = path.size();
for (i = 0; i < M; i++) chk[path[i]] = i;
for (auto v : path) calc(v);
int ans = 3;
int dpsum = 0;
int scnt = 0;
for (auto v : path) {
if (sz[v]) dpsum += dp[v];
else scnt++;
}
for (i = 0; i < M; i++) {
int c = path[i];
int n = path[(i + 1) % M];
int res = dpsum + 2;
if (sz[c]) res -= dp[c];
if (sz[n]) res -= dp[n];
ans = max(ans, res);
}
ans = max(ans, dpsum + (scnt > 0));
cout << ans << '\n';
}
signed main() {
ios::sync_with_stdio(false), cin.tie(0);
int T;
cin >> T;
while (T--) solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 7612kb
input:
2 6 1 2 2 3 3 4 4 1 2 5 2 6 4 1 2 2 3 3 4 4 1
output:
4 3
result:
ok 2 number(s): "4 3"
Test #2:
score: 0
Accepted
time: 97ms
memory: 7912kb
input:
85665 6 3 2 4 1 4 6 2 1 2 6 5 1 7 6 2 6 3 5 1 1 2 2 4 4 7 3 7 7 6 1 6 7 1 4 1 3 7 5 5 3 4 2 7 6 2 7 4 7 5 3 1 3 4 2 5 1 4 7 7 2 2 6 5 4 5 6 5 1 3 1 4 6 7 3 5 3 1 3 7 3 2 5 1 5 4 4 6 7 4 5 4 1 3 6 3 7 6 7 6 1 2 1 7 5 3 7 3 1 4 6 2 6 3 2 3 4 3 7 2 3 2 6 2 4 7 5 3 5 5 1 1 4 7 3 4 3 7 5 6 2 7 4 6 6 7 6 ...
output:
4 3 3 3 3 4 4 5 4 5 4 4 3 4 4 3 4 4 4 4 4 5 3 4 3 4 3 9 4 4 3 4 8 3 98 5 4 3 6 4 4 4 4 3 4 4 4 4 5 3 5 4 3 4 95 4 4 4 5 4 3 4 3 5 4 3 4 3 3 4 4 4 4 4 3 4 4 4 3 3 3 4 4 3 4 4 4 4 4 4 3 3 5 5 4 5 4 3 4 4 3 3 3 5 4 4 4 6 4 5 5 5 4 3 5 4 4 3 4 10 4 3 3 4 4 3 5 4 4 3 5 3 4 4 3 3 3 4 5 98 5 105 4 4 4 3 4 ...
result:
ok 85665 numbers
Test #3:
score: 0
Accepted
time: 171ms
memory: 24344kb
input:
30 2229 1066 248 248 881 881 2080 2080 1615 1615 1647 1647 1774 1774 196 196 434 434 390 390 129 129 563 563 63 63 1457 1457 1015 1015 2200 2200 1187 1187 1763 1763 1121 1121 2122 2122 1783 1783 1756 1756 2031 2031 2153 2153 605 605 1778 1778 1287 1287 2062 2062 817 817 194 194 474 474 414 414 1736 ...
output:
1092 881 722 1412 37556 638 438 509 273 29198 740 27535 46011 865 444 30031 49564 794 489 469 624 956 1180 17384 50000 715 1291 49920 1465 3
result:
ok 30 numbers