#include <bits/stdc++.h> using namespace std; #define rep(i,a,n) for (int i=a;i<n;i++) #define per(i,a,n) for (int i=n-1;i>=a;i--) #define pb push_back #define eb emplace_back #define mp make_pair #define all(x) (x).begin(),(x).end() #define fi first #define se second #define SZ(x) ((int)(x).size()) typedef vector<int> VI; typedef basic_string<int> BI; typedef long long ll; typedef pair<int,int> PII; typedef double db; mt19937 mrand(1); const ll mod=1000000007; int rnd(int x) { return mrand() % x;} ll powmod(ll a,ll b) {ll res=1;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;} ll gcd(ll a,ll b) { return b?gcd(b,a%b):a;} // head const int N=201000; int a[N][2],alive[N][2],L[N]; PII pos[N]; vector<PII> ad[N]; int n,k; ll ans[N]; void add(int l,int r,int v) { ad[r].pb(mp(l,v)); //printf("add %d %d %d\n",l,r,v); } const int M=11; struct node { int cnt[12],mv; int fg; }nd[4*N]; void upd(int p) { nd[p].mv=min(nd[p+p].mv,nd[p+p+1].mv); rep(i,0,M) { nd[p].cnt[i]=0; if (nd[p].mv+i-nd[p+p].mv>=0) nd[p].cnt[i]+=nd[p+p].cnt[nd[p].mv+i-nd[p+p].mv]; if (nd[p].mv+i-nd[p+p+1].mv>=0) nd[p].cnt[i]+=nd[p+p+1].cnt[nd[p].mv+i-nd[p+p+1].mv]; } } void setf(int p,int v) { nd[p].fg+=v; nd[p].mv+=v; } void build(int p,int l,int r) { nd[p].mv=0; nd[p].cnt[0]=r-l+1; if (l==r) { } else { int md=(l+r)>>1; build(p+p,l,md); build(p+p+1,md+1,r); //upd(p); } } void push(int p) { if (nd[p].fg) { setf(p+p,nd[p].fg); setf(p+p+1,nd[p].fg); nd[p].fg=0; } } void modify(int p,int l,int r,int tl,int tr,int v) { if (tl>tr) return; if (tl==l&&tr==r) return setf(p,v); else { push(p); int md=(l+r)>>1; if (tr<=md) modify(p+p,l,md,tl,tr,v); else if (tl>md) modify(p+p+1,md+1,r,tl,tr,v); else modify(p+p,l,md,tl,md,v),modify(p+p+1,md+1,r,md+1,tr,v); upd(p); int sz=0; rep(i,0,M) sz+=nd[p].cnt[i]; assert(sz<=r-l+1); } } int main() { scanf("%d%d",&n,&k); for (int j=0;j<2;j++) for (int i=0;i<n;i++) { scanf("%d",&a[i][j]); pos[a[i][j]]=mp(i,j); } rep(i,1,2*n+1) add(i,i,1); rep(i,0,n) { add(min(a[i][0],a[i][1]),max(a[i][0],a[i][1]),-1); } rep(i,0,n) rep(j,0,2) { add(min(a[i][j],a[(i+1)%n][j]),max(a[i][j],a[(i+1)%n][j]),-1); } rep(i,0,n) { auto d={a[i][0],a[i][1],a[(i+1)%n][0],a[(i+1)%n][1]}; add(min(d),max(d),1); } int cut=3*n; int l=1; rep(r,1,2*n+1) { auto addv=[&](int x,int y) { rep(c,-1,2) if (!alive[(x+c+n)%n][y^1]) --cut; alive[x][y]=1; }; auto delv=[&](int x,int y) { rep(c,-1,2) if (!alive[(x+c+n)%n][y^1]) ++cut; alive[x][y]=0; }; addv(pos[r].fi,pos[r].se); while (l<=r&&cut==0) { delv(pos[l].fi,pos[l].se); ++l; } L[r]=l; //if (l>1) add(l-1,r,1); //printf("cnm %d %d\n",l,r); } build(1,1,2*n); for (int r=1;r<=2*n;r++) { for (auto [l,v]:ad[r]) modify(1,1,2*n,1,l,v); modify(1,1,2*n,1,L[r]-1,1); for (int i=0;i<M;i++) if (nd[1].mv+i<=k) { ans[nd[1].mv+i]+=nd[1].cnt[i]; //printf("%d %d %d\n",r,nd[1].mv+i,nd[1].cnt[i]); } modify(1,1,2*n,1,L[r]-1,-1); } rep(i,1,k+1) printf("%lld%c",ans[i]," \n"[i==k]); }
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | #include <bits/stdc++.h> using namespace std; #define rep(i,a,n) for (int i=a;i<n;i++) #define per(i,a,n) for (int i=n-1;i>=a;i--) #define pb push_back #define eb emplace_back #define mp make_pair #define all(x) (x).begin(),(x).end() #define fi first #define se second #define SZ(x) ((int)(x).size()) typedef vector<int> VI; typedef basic_string<int> BI; typedef long long ll; typedef pair<int,int> PII; typedef double db; mt19937 mrand(1); const ll mod=1000000007; int rnd(int x) { return mrand() % x;} ll powmod(ll a,ll b) {ll res=1;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;} ll gcd(ll a,ll b) { return b?gcd(b,a%b):a;} // head const int N=201000; int a[N][2],alive[N][2],L[N]; PII pos[N]; vector<PII> ad[N]; int n,k; ll ans[N]; void add(int l,int r,int v) { ad[r].pb(mp(l,v)); //printf("add %d %d %d\n",l,r,v); } const int M=11; struct node { int cnt[12],mv; int fg; }nd[4*N]; void upd(int p) { nd[p].mv=min(nd[p+p].mv,nd[p+p+1].mv); rep(i,0,M) { nd[p].cnt[i]=0; if (nd[p].mv+i-nd[p+p].mv>=0) nd[p].cnt[i]+=nd[p+p].cnt[nd[p].mv+i-nd[p+p].mv]; if (nd[p].mv+i-nd[p+p+1].mv>=0) nd[p].cnt[i]+=nd[p+p+1].cnt[nd[p].mv+i-nd[p+p+1].mv]; } } void setf(int p,int v) { nd[p].fg+=v; nd[p].mv+=v; } void build(int p,int l,int r) { nd[p].mv=0; nd[p].cnt[0]=r-l+1; if (l==r) { } else { int md=(l+r)>>1; build(p+p,l,md); build(p+p+1,md+1,r); //upd(p); } } void push(int p) { if (nd[p].fg) { setf(p+p,nd[p].fg); setf(p+p+1,nd[p].fg); nd[p].fg=0; } } void modify(int p,int l,int r,int tl,int tr,int v) { if (tl>tr) return; if (tl==l&&tr==r) return setf(p,v); else { push(p); int md=(l+r)>>1; if (tr<=md) modify(p+p,l,md,tl,tr,v); else if (tl>md) modify(p+p+1,md+1,r,tl,tr,v); else modify(p+p,l,md,tl,md,v),modify(p+p+1,md+1,r,md+1,tr,v); upd(p); int sz=0; rep(i,0,M) sz+=nd[p].cnt[i]; assert(sz<=r-l+1); } } int main() { scanf("%d%d",&n,&k); for (int j=0;j<2;j++) for (int i=0;i<n;i++) { scanf("%d",&a[i][j]); pos[a[i][j]]=mp(i,j); } rep(i,1,2*n+1) add(i,i,1); rep(i,0,n) { add(min(a[i][0],a[i][1]),max(a[i][0],a[i][1]),-1); } rep(i,0,n) rep(j,0,2) { add(min(a[i][j],a[(i+1)%n][j]),max(a[i][j],a[(i+1)%n][j]),-1); } rep(i,0,n) { auto d={a[i][0],a[i][1],a[(i+1)%n][0],a[(i+1)%n][1]}; add(min(d),max(d),1); } int cut=3*n; int l=1; rep(r,1,2*n+1) { auto addv=[&](int x,int y) { rep(c,-1,2) if (!alive[(x+c+n)%n][y^1]) --cut; alive[x][y]=1; }; auto delv=[&](int x,int y) { rep(c,-1,2) if (!alive[(x+c+n)%n][y^1]) ++cut; alive[x][y]=0; }; addv(pos[r].fi,pos[r].se); while (l<=r&&cut==0) { delv(pos[l].fi,pos[l].se); ++l; } L[r]=l; //if (l>1) add(l-1,r,1); //printf("cnm %d %d\n",l,r); } build(1,1,2*n); for (int r=1;r<=2*n;r++) { for (auto [l,v]:ad[r]) modify(1,1,2*n,1,l,v); modify(1,1,2*n,1,L[r]-1,1); for (int i=0;i<M;i++) if (nd[1].mv+i<=k) { ans[nd[1].mv+i]+=nd[1].cnt[i]; //printf("%d %d %d\n",r,nd[1].mv+i,nd[1].cnt[i]); } modify(1,1,2*n,1,L[r]-1,-1); } rep(i,1,k+1) printf("%lld%c",ans[i]," \n"[i==k]); } |