이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize ("O3")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
bitset<2000>ok[2000];
unordered_map<bitset<2000>, int>M;
int dp(bitset<2000> x)
{
auto it = M.find(x);
if (it != M.end())
return it->second;
int i = x._Find_first();
if (i >= 2000)
return 0;
x[i] = false;
return M[x] = max(1 + dp(x & ok[i]), dp(x));
}
int maximum_deevs(vector<int> y)
{
assert(M.empty());
bitset<2000>deevs;
for (ll i = 0; i < (ll)y.size(); i++)
{
ll k = i + 1;
for (ll j = i + 1; j < (ll)y.size(); j++)
{
if ((y[j] - y[i]) * (k - i) >= (y[k] - y[i]) * (j - i))
k = j;
if (j != k)
{
ok[i][j] = true;
}
else
ok[i][j] = false;
}
deevs[i] = true;
}
return dp(deevs);
}/*
int main()
{
cout << maximum_deevs({ 6, 1, 5, 2, 3, 1}) << endl;//3
cout << maximum_deevs({ 0, 1, 2}) << endl;//1
}/**/
컴파일 시 표준 에러 (stderr) 메시지
mountains.cpp:45:2: warning: "/*" within comment [-Wcomment]
}/**/
# | 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... |