#include //#include using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n) - 1; i >= 0; --i) #define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define P pair template inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } #include #include template struct RangeSet { // ReadMe:閉区間なことに注意 // member std::set>st; T TINF; // constructor RangeSet(T lim) { TINF = lim + 1; st.emplace(-TINF, -TINF); st.emplace(TINF, TINF); } // cover check bool IsCovered(T l, T r) { auto ite = prev(st.lower_bound({ l + 1,l + 1 })); return ((ite->first <= l) && (r <= ite->second)); } bool IsCovered(T x) { return IsCovered(x, x); } // get by covered std::pair ByCovered(T l, T r) { auto ite = prev(st.lower_bound({ l + 1,l + 1 })); if ((ite->first <= l) && (r <= ite->second)) return *ite; return { -TINF, -TINF }; } std::pair ByCovered(T x) { return ByCovered(x, x); } // getFront std::pairgetFront() { auto itr = st.begin(); itr++; return *itr; } // getBack std::pairgetBack() { auto itr = st.end(); itr--; itr--; return *itr; } // insert T Insert(T l, T r) { //insertでmargeしないver //st.emplace(l, r); //return 0; T sumErase = T(0); auto ite = prev(st.lower_bound({ l + 1,l + 1 })); // no need merge if (IsCovered(l, r))return sumErase; // first merge pos if ((ite->first <= l) && (l <= (ite->second + 1))) { l = ite->first; sumErase += ite->second - ite->first + 1; ite = st.erase(ite); } else ite = next(ite); // merge while (r > ite->second) { sumErase += ite->second - ite->first + 1; ite = st.erase(ite); } if (((ite->first - 1) <= r) && (r <= ite->second)) { r = ite->second; sumErase += ite->second - ite->first + 1; st.erase(ite); } st.emplace(l, r); return (r - l + 1) - sumErase; } T Insert(T x) { return Insert(x, x); } // erase T Erase(T l, T r) { T ret = T(0); auto get = ByCovered(l, r); if ((-TINF) != get.first) { st.erase(get); if (get.first != l)st.emplace(get.first, l - 1); if (get.second != r)st.emplace(r + 1, get.second); ret += r - l + 1; return ret; } auto ite = prev(st.lower_bound({ l + 1,l + 1 })); // first erase if ((ite->first <= l) && (l <= ite->second)) { ret += ite->second - l + 1; if (ite->first != l)st.emplace(ite->first, l - 1); ite = st.erase(ite); } else ite = next(ite); // erase while (ite->second <= r) { ret += ite->second - ite->first + 1; ite = st.erase(ite); } // last if ((ite->first <= r) && (r <= ite->second)) { ret += r - ite->first + 1; if (ite->second != r) st.emplace(r + 1, ite->second); st.erase(ite); } return ret; } T Erase(T x) { return Erase(x, x); } // range count int size() { return st.size() - 2; } // mex T Mex(T x = 0) { if (!IsCovered(x)) return x; auto ite = prev(st.lower_bound({ x + 1, x + 1 })); return ite->second + 1; } // debug void Debug() { for (auto[l, r] : st)std::cout << l << " " << r << std::endl; } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; cin >> n >> m; vectora(n); rep(i, n)cin >> a[i]; RangeSetrst(INF); mapmp; int j = 0; vectorans(n + 2); rep(i, n) { while (j < n && rst.Mex() < m) { if (0 == mp[a[j]])rst.Insert(a[j]); mp[a[j]]++; j++; } if (rst.Mex() >= m) { //cout << j - i << " " << n - i + 1 << endl; ans[j - i]++; ans[n - i + 1]--; } mp[a[i]]--; if (0 == mp[a[i]])rst.Erase(a[i]); j = max(j, i + 1); } rep(i, n + 1)ans[i + 1] += ans[i]; rep2(i, 1, n + 1)cout << ans[i] << endl; return 0; }