ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#159060 | #46. delete | Nanfeng1997 | 60 | 64ms | 54656kb | C++11 | 2.3kb | 2022-09-05 21:15:50 | 2022-09-05 21:15:52 |
answer
#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for (int i(a); i <= b; ++i)
#define dec(i, a, b) for (int i(b); i >= a; --i)
#ifdef LOCAL
#include <debugger>
clock_t start = clock();
#else
#define debug(...) 42
#endif
template <typename T>
void chkmax(T &x, T y) {
x = max(x, y);
}
template <typename T>
void chkmin(T &x, T y) {
x = min(x, y);
}
const int N = 1E6 + 10;
int n, k, m;
int a[N], dp[N];
pair<int, int> p[N];
template <typename T>
class fenwick {
public:
vector<T> fenw;
int n;
fenwick(int _n) : n(_n) { fenw.resize(n); }
void modify(int x, T v) {
while (x < n) {
chkmax(fenw[x], v);
// fenw[x] += v;
x |= (x + 1);
}
}
T get(int x) {
T v = 0;
while (x >= 0) {
// v += fenw[x];
chkmax(v, fenw[x]);
x = (x & (x + 1)) - 1;
}
return v;
}
};
void solve() {
cin >> n >> k;
rep(i, 1, n) {
cin >> a[i];
if (a[i] <= i && i - a[i] <= k && a[i] <= n - k)
p[m++] = make_pair(i - a[i], a[i]);
}
sort(p, p + m);
fenwick<int> fen(n + 10);
for (int i = 0; i < m; i++) {
int now = fen.get(p[i].second - 1);
fen.modify(p[i].second, now + 1);
}
cout << fen.get(n);
}
void solve2() {
cin >> n >> k;
vector<int> a(n + 1);
int cnt = 0;
for (int i = 1; i <= n; i ++ ) {
cin >> a[i];
if (i > k) cnt += (i - a[i] == k);
}
// cout << cnt << "\n";
vector<vector<int> > dp(n + 1, vector<int> (k + 1, 0));
int ans = 0;
for (int i = 1; i <= n; i ++ ) {
if (i > k) cnt -= (i - a[i] == k);
for (int j = 0; j <= min(i, k); j ++ ) {
if (j) dp[i][j] = dp[i - 1][j - 1];
dp[i][j] = max(dp[i][j], dp[i - 1][j] + (a[i] == i - j));
// cout << "dp[" << i << "][" << j << "]: " << dp[i][j] << " ";
}
// cout << "\n";
if (i >= k) {
// cout << i << " " << dp[i][k] << " " << cnt << "\n";
chkmax(ans, dp[i][k] + cnt);
}
}
cout << ans << "\n";
// 1 1 3 |2| 4 5 |75|
}
int main() {
// cin.tie(0)->sync_with_stdio(false);
ios::sync_with_stdio(0);
cin.tie(0);
solve2();
#ifdef LOCAL
clock_t ends = clock();
// cout << "\n\nRunning Time : " << (double) (ends - start) / CLOCKS_PER_SEC *
// 1000 << "ms" << endl;
#endif
return 0;
}
Details
小提示:点击横条可展开更详细的信息
Test #1:
score: 10
Accepted
time: 4ms
memory: 9080kb
input:
20 8 11 9 10 2 4 8 7 4 9 8 12 1 3 12 7 9 9 16 3 15
output:
4
result:
ok single line: '4'
Test #2:
score: 10
Accepted
time: 4ms
memory: 9080kb
input:
20 10 1 12 11 1 2 7 10 2 13 4 11 14 8 15 4 6 1 3 5 12
output:
4
result:
ok single line: '4'
Test #3:
score: 10
Accepted
time: 4ms
memory: 9244kb
input:
500 150 7 2 11 5 1 13 10 10 14 20 20 2 5 17 14 4 5 5 3 2 2 7 10 3 18 2 7 3 5 15 2 8 5 14 3 1 1 4 19 ...
output:
27
result:
ok single line: '27'
Test #4:
score: 10
Accepted
time: 0ms
memory: 9512kb
input:
500 233 8 16 14 3 7 1 14 15 11 8 4 11 13 6 5 18 2 11 10 5 7 3 14 2 7 16 6 5 14 1 13 6 9 7 9 5 5 6 2 ...
output:
26
result:
ok single line: '26'
Test #5:
score: 10
Accepted
time: 21ms
memory: 41720kb
input:
5000 1666 15 23 11 4 10 16 24 9 10 10 9 14 7 3 1 22 4 8 7 18 3 24 19 6 2 16 2 5 7 10 6 12 1 6 18 9 6...
output:
120
result:
ok single line: '120'
Test #6:
score: 10
Accepted
time: 31ms
memory: 54656kb
input:
5000 2333 2 28 15 6 10 2 10 10 26 7 8 16 3 1 15 17 11 7 8 2 8 2 6 3 4 13 6 20 13 18 3 6 24 1 5 26 18...
output:
120
result:
ok single line: '120'
Test #7:
score: 0
Memory Limit Exceeded
input:
100000 23333 158 127 191 174 144 43 80 135 48 54 91 22 135 145 32 109 180 16 51 47 86 69 26 121 161 ...
output:
result:
Test #8:
score: 0
Memory Limit Exceeded
input:
100000 55555 81 122 1 146 76 142 36 207 127 17 5 102 123 42 69 15 42 137 94 107 101 49 179 44 48 78 ...
output:
result:
Test #9:
score: 0
Memory Limit Exceeded
input:
1000000 233333 536 132 387 278 660 779 239 1629 535 1641 1374 532 53 840 432 180 1457 232 494 580 61...
output:
result:
Test #10:
score: 0
Memory Limit Exceeded
input:
1000000 666666 1053 405 264 292 1304 414 58 948 985 1112 865 1225 982 595 927 701 623 666 43 1019 43...