Codeforces Round #542 [Alex Lopashev Thanks-Round] (Div. 1) D. Isolation
阿新 • • 發佈:2020-10-07
題目大意
將一段長為\(n\)的序列\(a\)分為幾個的非空段,每段中只出現一次的數的個數不得大於\(k\)。
求方案數。
Solution
暴力比較顯然,設\(f[i]\)表示以\(i\)作為一段結尾的方案數。
\(f[i]=\sum_{j=1}^{i-1}f[j]\) \((cnt(j+1,i)\leq k)\)
其中\(cnt(j,i)\)表示\(j\)到\(i\)中出現次數為1的數的個數。
然後考慮怎麼優化,
可以發現,每次新加入一個數\(a[i]\),\(cnt\)改變的是連段連續的區域,
設\(s[j]\)表示\(cnt(j, i)\),\(pre[i]\)表示位置\(i\)
那麼\(pre[pre[i]] + 1\)—\(pre[i]\)的\(s\) -1,\(pre[i] + 1\)—\(i\)的\(s\) +1。
於是我們想到了暴力美學——分塊。
(我的是比較劣的方法,時間複雜度大概是\(O(n\sqrt{n}log(\sqrt{n}))\)吧。)
設\(tag[j]\)表示塊\(j\)全體元素的\(s\)需要改變的值。
以\(s[i]\)為關鍵字將塊內元素排序。
每次加入\(a[i]\),就先更新之前的\(s\),整塊就之間改變\(tag\),不完整的塊就\(rebuild\)。
更新\(f[i]\),對於\(i\)所在的塊暴力列舉\(i\)
對於前面的塊,可以加入\(f[i]\)的就是\(f[j]\) \((s[j] + tag[j所在的塊] \leq k)\),
由於塊內元素已根據\(s[i]\)排序,那麼我們用二分 + 字首和維護就可以了。
最後答案是\(f[n]\)
然後無。
Code
#include <cstdio> #include <algorithm> #include <cmath> using namespace std; #define N 100000 #define M 320 #define Mod 998244353 #define fo(i, x, y) for(int i = x; i <= y; i ++) #define fd(i, x, y) for(int i = x; i >= y; i --) void read(int &x) { char ch = getchar(); x = 0; while (ch < '0' || ch > '9') ch = getchar(); while (ch >= '0' && ch <= '9') x = (x << 1) + (x << 3) + ch - 48, ch = getchar(); } struct Arr { int x, y; } b[N + 1], c[M + 1]; int a[N + 1], s[N + 1], add[M + 1], pre[N + 1][2], num[N + 1]; int f[N + 1], sum[N + 1]; int n, m, tot, sq; bool Cmp(Arr a, Arr b) { return a.x < b.x; } int Max(int x, int y) { return x > y ? x : y; } int Min(int x, int y) { return x < y ? x : y; } void Rebuild(int k, int l, int r, int ad) { fo(i, c[k].x, c[k].y) s[i] += add[k]; fo(i, l, r) s[i] += ad; add[k] = 0; fo(i, c[k].x, c[k].y) b[i] = (Arr) { s[i], f[i - 1] }; sort(b + c[k].x, b + 1 + c[k].y, Cmp); sum[c[k].x] = b[c[k].x].y; fo(i, c[k].x + 1, c[k].y) sum[i] = (sum[i - 1] + b[i].y) % Mod; } void Add(int l, int r, int ad) { fo(i, 1, tot) { if (c[i].x > r) break; if (c[i].y >= l && c[i].x <= r) { if (c[i].x < l) Rebuild(i, l, Min(c[i].y, r), ad); else if (c[i].y > r) Rebuild(i, Max(i, c[i].x), r, ad); else (add[i] += ad); } } } int Get(int l, int r, int g) { int mid = 0, w = 0; while (l <= r) { mid = l + r >> 1; b[mid].x <= g ? l = (w = mid) + 1 : r = mid - 1; } return w; } int main() { freopen("isolation.in", "r", stdin); freopen("isolation.out", "w", stdout); read(n), read(m); fo(i, 1, n) read(a[i]); sq = sqrt(n); tot = n / sq + (n % sq > 0); fo(i, 1, n) num[i] = (i - 1) / sq + 1; fo(i, 1, n) if (num[i] > num[i - 1]) c[num[i]].x = i, c[num[i - 1]].y = i - 1; c[num[n]].y = n; fo(i, 0, n) f[i] = 0; f[0] = 1; fo(i, 1, n) { int k = num[i]; if (pre[a[i]][0]) { if (pre[a[i]][1] + 1 >= c[k].x) { fo(j, pre[a[i]][1] + 1, pre[a[i]][0]) -- s[j]; fo(j, pre[a[i]][0] + 1, i) ++ s[j]; Rebuild(k, 1, 0, 0); } else if (pre[a[i]][0] >= c[k].x) { Add(pre[a[i]][1] + 1, c[k].x - 1, -1); fo(j, c[k].x, pre[a[i]][0]) -- s[j]; fo(j, pre[a[i]][0] + 1, i) ++ s[j]; Rebuild(k, 1, 0, 0); } else { Add(pre[a[i]][1] + 1, pre[a[i]][0], -1), Add(pre[a[i]][0] + 1, c[k].x - 1, 1); fo(j, c[k].x, i) ++ s[j]; Rebuild(k, 1, 0, 0); } } else { Add(1, c[k].x - 1, 1); fo(j, c[k].x, i) ++ s[j]; Rebuild(k, 1, 0, 0); } pre[a[i]][1] = pre[a[i]][0], pre[a[i]][0] = i; fo(j, c[k].x, i) if (s[j] + add[k] <= m) (f[i] += f[j - 1]) %= Mod; fd(j, k - 1, 1) { if (b[c[j].x].x + add[j] <= m) (f[i] += sum[Get(c[j].x, c[j].y, m - add[j])]) %= Mod; } if (i == c[k].y) Rebuild(k, 1, 0, 0); } printf("%d\n", f[n]); return 0; }