Advertisement
Dmaxiya

传送阵 参考代码

Apr 3rd, 2025
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.94 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long LL;
  5. const int maxn = 1000000 + 100;
  6. int n, ans;
  7. int a[maxn], fa[maxn], cnt[maxn];
  8.  
  9. void init() {
  10.     for (int i = 1; i <= n; ++i) {
  11.         fa[i] = i;
  12.         cnt[i] = 1;
  13.     }
  14. }
  15.  
  16. int findF(int x) {
  17.     return fa[x] == x ? x : fa[x] = findF(fa[x]);
  18. }
  19.  
  20. void union_(int x, int y) {
  21.     x = findF(x);
  22.     y = findF(y);
  23.     if (x != y) {
  24.         fa[x] = y;
  25.         cnt[y] += cnt[x];
  26.     }
  27. }
  28.  
  29. int main() {
  30. #ifdef ExRoc
  31.     freopen("test.txt", "r", stdin);
  32. #endif // ExRoc
  33.     ios::sync_with_stdio(false);
  34.  
  35.     cin >> n;
  36.     init();
  37.     for (int i = 1; i <= n; ++i) {
  38.         cin >> a[i];
  39.         union_(i, a[i]);
  40.     }
  41.     for (int i = 1; i < n; ++i) {
  42.         ans = max(ans, cnt[findF(i)]);
  43.         if (findF(i) != findF(i + 1)) {
  44.             ans = max(ans, cnt[findF(i)] + cnt[findF(i + 1)]);
  45.         }
  46.     }
  47.     cout << ans << endl;
  48.  
  49.     return 0;
  50. }
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement