이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mountains.h"
#include <bits/stdc++.h>
using namespace std;
#define ld long double
const int N = 2002;
int n, ans;
int dp[N];
int maximum_deevs(vector<int> y) {
n = y.size();
ans = 1;
for (int i = 0; i < n; i++) {
dp[i] = 1;
for (int j = i-1; j >= 0; j--) {
for (int k = j+1; k < i; k++) {
ld p = (y[i]-y[j]) / (i-j);
ld h = y[j] + ((k-j) * p);
ld h2 = y[k];
if (h2 > h) dp[i] = max(dp[i], dp[j]+1);
}
}
ans = max(ans, dp[i]);
}
return ans;
}
# | 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... |