P5151 HKE与他的小朋友
P5151 HKE与他的小朋友
说实在的这个对于置换的理解需要略微深一点。
首先可以直接将其看成一个置换:
$$
\left[
\begin{matrix}
1 & 2 & 3 & 4 & 5 & \dots & n \
a_1 & a_2 & a_3 & a_4 & a_5 & \dots & a_n
\end{matrix}
\right]
$$
这个的具体含义就是编号为 $i$ 的位置之后会变成 $a_i$。那么显然对于一个置换会有若干个置换环,我们直接对于每一个置换环进行处理即可,复杂度是 $O(n)$ 的。
最后我们再将其反过来即可。
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
| #include <bits/stdc++.h> using namespace std;
#ifdef Fread char buf[1 << 21], *iS, *iT; #define gc() (iS == iT ? (iT = (iS = buf) + fread (buf, 1, 1 << 21, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++) #define getchar gc #endif
template <typename T> void r1(T &x) { x = 0; char c(getchar()); int f(1); for(; c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1; for(; '0' <= c && c <= '9';c = getchar()) x = (x * 10) + (c ^ 48); x *= f; }
template <typename T,typename... Args> inline void r1(T& t, Args&... args) { r1(t); r1(args...); }
#define int long long const int maxn = 2e5 + 5; const int maxm = maxn << 1;
int n, K; vector<int> vc[maxn]; int siz[maxn], tot(0), a[maxn], vis[maxn]; int ans[maxn], f[maxn];
signed main() {
int i, j; r1(n, K); for(i = 1; i <= n; ++ i) r1(a[i]); for(i = 1; i <= n; ++ i) if(!vis[i]) { ++ tot; for(j = i; !vis[j]; j = a[j]) { ++ siz[tot]; vc[tot].push_back(j); vis[j] = 1; } } for(i = 1; i <= tot; ++ i) { int tmp = K % siz[i];
for(j = 0; j < siz[i]; ++ j) { ans[vc[i][j]] = vc[i][(j + tmp) % siz[i]]; } } for(i = 1; i <= n; ++ i) f[ans[i]] = i; for(i = 1; i <= n; ++ i) printf("%lld%c", f[i], " \n"[i == n]); return 0; }
|