QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#163398 | #5507. Investors | ahsoltan | TL | 125ms | 3952kb | C++17 | 2.3kb | 2023-09-04 03:08:52 | 2023-09-04 03:08:52 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 2137
#endif
const int INF = 1e9;
struct lct {
int n;
vector<pair<int, int>> tree;
vector<vector<int>>& c;
lct(int _n, vector<vector<int>>& _c) : c(_c) {
n = 1;
while (n < _n) {
n *= 2;
}
tree.resize(2 * n);
}
int f(pair<int, int> ff, int x) {
x = min(x, (int)c[0].size());
return ff.first + (x <= ff.second + 1 ? 0 : c[ff.second + 1][x - 1]);
}
void add(int u, int ul, int ur, pair<int, int> ff) {
int mid = (ul + ur) / 2;
bool l = f(ff, ul) < f(tree[u], ul);
bool m = f(ff, mid) < f(tree[u], mid);
if (m) {
swap(tree[u], ff);
}
if (ul == ur) {
return;
}
if (l != m) {
add(2 * u, ul, mid, ff);
} else {
add(2 * u + 1, mid + 1, ur, ff);
}
}
int get(int x) {
int res = INF;
int u = x + n;
while (u > 0) {
res = min(res, f(tree[u], x));
u /= 2;
}
return res;
}
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int tt;
cin >> tt;
while (tt--) {
int n, k;
cin >> n >> k;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
int inv = 0;
vector<vector<int>> e(n);
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (a[j] < a[i]) {
++inv;
e[i + 1].push_back(inv);
e[j].push_back(-inv);
}
}
}
vector<vector<int>> c(n, vector<int>(n));
for (int i = 0; i < n; i++) {
set<int> s;
int cnt = 0;
for (int j = i; j < n; j++) {
for (int x : e[j]) {
if (x > 0) {
s.insert(x);
} else if (x < 0 && s.count(-x)) {
s.erase(-x);
cnt++;
}
}
c[i][j] = cnt;
}
}
vector<lct> dp(k + 1, lct(n + 1, c));
for (int i = 1; i < n; i++) {
for (int j = k - 1; j >= 0; j--) {
dp[j + 1].add(1, 0, dp[j + 1].n - 1, {dp[j].get(i), i});
}
}
int ans = INF;
for (int i = 0; i <= k; i++) {
ans = min(ans, dp[i].get(n));
}
cout << ans << '\n';
}
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3608kb
input:
2 6 1 4 5 6 2 2 1 6 2 4 5 6 2 2 1
output:
2 0
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 125ms
memory: 3952kb
input:
349 6 2 2 1 2 1 2 1 48 12 42 47 39 39 27 25 22 44 45 13 5 48 38 4 37 6 24 10 42 38 12 37 31 19 44 6 29 17 7 12 7 26 35 24 15 9 37 3 27 21 33 29 34 20 14 30 31 21 48 12 1 43 17 46 17 39 40 22 25 2 22 12 4 11 38 12 4 11 1 5 39 44 37 10 19 20 42 45 2 45 37 20 48 34 16 41 23 18 13 44 47 21 29 4 23 18 16...
output:
1 18 15 145 0 2 1 0 13 13 23 0 0 0 1 0 0 0 0 0 0 0 0 161 3 0 0 1 0 0 0 0 0 0 1 0 3 0 0 1 0 0 1 0 0 1 4 0 0 0 0 0 0 0 0 2 0 2 0 0 8 280 0 0 34 4 0 1 0 0 3 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 2 0 0 0 0 0 0 0 8 1 8 0 0 0 0 1 11 5 0 0 0 6 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 13 1 0 0 0 ...
result:
ok 349 lines
Test #3:
score: -100
Time Limit Exceeded
input:
6 1000 333 84886 84887 84732 83775 83776 83777 81234 80288 79661 79243 79244 78520 78521 78522 78523 78524 78525 79041 79042 78509 78120 77073 77432 77433 76111 75362 75363 75364 75365 75366 73979 73980 73981 73982 73983 73984 73472 73473 73075 72948 72949 72727 72728 72383 72384 72272 72273 72274 7...