#include<bits/stdc++.h> using namespace std; int rep[200009], ranga[200009], n, k, wyn[200009], gdzie[200009], tab[100009], tab2[100009]; int Find(int v) { if(v==rep[v]) { return v; } int res=Find(rep[v]); rep[v]=res; return res; } void Union(int v, int w) { v=Find(v); w=Find(w); if(ranga[v] < ranga[w]) { swap(v, w); } if(ranga[v]==ranga[w]) { rep[w]=v; ranga[v]++; } else { rep[w]=v; } } void wykonaj(int pocz) { int spojne=1; wyn[1]++; for(int i=pocz+1; i<=2*n; i++) { spojne++; if(gdzie[i]>n) { if(pocz <= tab[gdzie[i]-n] && tab[gdzie[i]-n] < i && Find(gdzie[i])!=Find(gdzie[i]-n)) { spojne--; Union(gdzie[i], gdzie[i]-n); } if(gdzie[i]==n+1) { if(pocz <= tab2[n] && tab2[n] < i && Find(n+1)!=Find(2*n)) { spojne--; Union(n+1, n*2); } } else { if(pocz <= tab2[gdzie[i]-n-1] && tab2[gdzie[i]-n-1] < i && Find(gdzie[i])!=Find(gdzie[i]-1)) { spojne--; Union(gdzie[i], gdzie[i]-1); } } if(gdzie[i]==2*n) { if(pocz <= tab2[1] && tab2[1] < i && Find(n+1)!=Find(2*n)) { spojne--; Union(n+1, n*2); } } else { if(pocz <= tab2[gdzie[i]-n+1] && tab2[gdzie[i]-n+1] < i && Find(gdzie[i])!=Find(gdzie[i]+1)) { spojne--; Union(gdzie[i], gdzie[i]+1); } } } else { if(pocz <= tab2[gdzie[i]] && tab2[gdzie[i]] < i && Find(gdzie[i])!=Find(gdzie[i]+n)) { spojne--; Union(gdzie[i], gdzie[i]+n); } if(gdzie[i]==1) { if(pocz <= tab[n] && tab[n] < i && Find(1)!=Find(n)) { spojne--; Union(1, n); } } else { if(pocz <= tab[gdzie[i]-1] && tab[gdzie[i]-1] < i && Find(gdzie[i])!=Find(gdzie[i]-1)) { spojne--; Union(gdzie[i], gdzie[i]-1); } } if(gdzie[i]==n) { if(pocz <= tab[1] && tab[1] < i && Find(1)!=Find(n)) { spojne--; Union(1, n); } } else { if(pocz <= tab[gdzie[i]+1] && tab[gdzie[i]+1] < i && Find(gdzie[i])!=Find(gdzie[i]+1)) { spojne--; Union(gdzie[i], gdzie[i]+1); } } } wyn[spojne]++; } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n >> k; for(int i=1; i<=n; i++) { cin >> tab[i]; gdzie[tab[i]]=i; } for(int i=1; i<=n; i++) { cin >> tab2[i]; gdzie[tab2[i]]=i+n; } for(int i=1; i<=2*n; i++) { for(int j=0; j<=2*n+5; j++) { rep[j]=j; ranga[j]=0; } wykonaj(i); } for(int i=1; i<=k; i++) { cout << wyn[i] << ' '; } }
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | #include<bits/stdc++.h> using namespace std; int rep[200009], ranga[200009], n, k, wyn[200009], gdzie[200009], tab[100009], tab2[100009]; int Find(int v) { if(v==rep[v]) { return v; } int res=Find(rep[v]); rep[v]=res; return res; } void Union(int v, int w) { v=Find(v); w=Find(w); if(ranga[v] < ranga[w]) { swap(v, w); } if(ranga[v]==ranga[w]) { rep[w]=v; ranga[v]++; } else { rep[w]=v; } } void wykonaj(int pocz) { int spojne=1; wyn[1]++; for(int i=pocz+1; i<=2*n; i++) { spojne++; if(gdzie[i]>n) { if(pocz <= tab[gdzie[i]-n] && tab[gdzie[i]-n] < i && Find(gdzie[i])!=Find(gdzie[i]-n)) { spojne--; Union(gdzie[i], gdzie[i]-n); } if(gdzie[i]==n+1) { if(pocz <= tab2[n] && tab2[n] < i && Find(n+1)!=Find(2*n)) { spojne--; Union(n+1, n*2); } } else { if(pocz <= tab2[gdzie[i]-n-1] && tab2[gdzie[i]-n-1] < i && Find(gdzie[i])!=Find(gdzie[i]-1)) { spojne--; Union(gdzie[i], gdzie[i]-1); } } if(gdzie[i]==2*n) { if(pocz <= tab2[1] && tab2[1] < i && Find(n+1)!=Find(2*n)) { spojne--; Union(n+1, n*2); } } else { if(pocz <= tab2[gdzie[i]-n+1] && tab2[gdzie[i]-n+1] < i && Find(gdzie[i])!=Find(gdzie[i]+1)) { spojne--; Union(gdzie[i], gdzie[i]+1); } } } else { if(pocz <= tab2[gdzie[i]] && tab2[gdzie[i]] < i && Find(gdzie[i])!=Find(gdzie[i]+n)) { spojne--; Union(gdzie[i], gdzie[i]+n); } if(gdzie[i]==1) { if(pocz <= tab[n] && tab[n] < i && Find(1)!=Find(n)) { spojne--; Union(1, n); } } else { if(pocz <= tab[gdzie[i]-1] && tab[gdzie[i]-1] < i && Find(gdzie[i])!=Find(gdzie[i]-1)) { spojne--; Union(gdzie[i], gdzie[i]-1); } } if(gdzie[i]==n) { if(pocz <= tab[1] && tab[1] < i && Find(1)!=Find(n)) { spojne--; Union(1, n); } } else { if(pocz <= tab[gdzie[i]+1] && tab[gdzie[i]+1] < i && Find(gdzie[i])!=Find(gdzie[i]+1)) { spojne--; Union(gdzie[i], gdzie[i]+1); } } } wyn[spojne]++; } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n >> k; for(int i=1; i<=n; i++) { cin >> tab[i]; gdzie[tab[i]]=i; } for(int i=1; i<=n; i++) { cin >> tab2[i]; gdzie[tab2[i]]=i+n; } for(int i=1; i<=2*n; i++) { for(int j=0; j<=2*n+5; j++) { rep[j]=j; ranga[j]=0; } wykonaj(i); } for(int i=1; i<=k; i++) { cout << wyn[i] << ' '; } } |