이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mountains.h"
#include <bits/stdc++.h>
#include <vector>
using namespace std;
const int N = 2000 + 2;
int dp[N];
vector<int> a;
#define pnt complex<long long>
long long cross(pnt x, pnt y)
{
return imag(conj(x) * y);
}
bool isR(pnt x, pnt y, pnt z)
{
return cross(y - x, z - y) < 0;
}
bool see(int i, int j)
{
pnt x(i, a[i]), y(j, a[j]);
for (int k = i + 1; k < j; ++k)
{
pnt z(k, a[k]);
if (isR(x, z, y))
{
return 0;
}
}
return 1;
}
int maximum_deevs(std::vector<int> y)
{
a = y;
dp[0] = 1;
int n = (int)y.size();
for (int i = 1; i < n; ++i)
{
for (int j = i - 1; ~j; --j)
{
if (!see(j, i))
{
dp[i] = max(dp[i], dp[j] + 1);
}
}
}
return *max_element(dp, dp + N);
}
# | 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... |