이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct Fenwick {
vector<multiset<int>> F;
int n;
Fenwick(int n_) : n(n_) {
F.resize(n);
}
void remove(int x, int d) {
for (; x < n; x |= x + 1) F[x].erase(F[x].find(d));
}
void add(int x, int d) {
for (; x < n; x |= x + 1) F[x].insert(d);
}
int qry(int x) {
int s = 0;
for (; x >= 0; x = (x & (x + 1)) - 1)
if (F[x].size()) s = max(s, *F[x].rbegin());
return s;
}
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, d;
cin >> n >> d;
vector<int> a(n);
for (int i = 0; i < n; i++) cin >> a[i];
vector<int> v = a;
sort(v.begin(), v.end());
v.erase(unique(v.begin(), v.end()), v.end());
for (int &x : a) x = lower_bound(v.begin(), v.end(), x) - v.begin();
Fenwick fen(n);
vector<int> dp(n);
for (int i = 0; i < n; i++) {
dp[i] = fen.qry(a[i] - 1) + 1;
fen.add(a[i], dp[i]);
if (i >= d) fen.remove(a[i - d], dp[i - d]);
}
cout << *max_element(dp.begin(), dp.end()) << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |