이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define MAX (int)(1e6 + 5)
#define ll long long
#define esq(x) (x<<1)
#define dir(x) ((x<<1)|1)
using namespace std;
int n, k, h[MAX], dp[MAX], resp;
int main()
{
cin >> n >> k;
for (int i = 1; i <= n; i++)
{
cin >> h[i];
dp[i] = 1;
}
for (int i = 1; i <= n; i++)
{
for (int j = max(1, i-k); j < i; j++)
{
if (h[j]<h[i]) dp[i] = max(dp[i], dp[j]+1);
}
resp = max(resp, dp[i]);
}
cout << resp << endl;
}
# | 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... |