This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "mountains.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pi = pair<int, int>;
using pl = pair<long long, long long>;
using vi = vector<int>;
using vl = vector<long long>;
using vpi = vector<pair<int, int>>;
using vpl = vector<pair<long long, long long>>;
#define fur(i, a, b) for(ll i = a; i <= (ll)b; ++i)
#define ruf(i, a, b) for(ll i = a; i >= (ll)b; --i)
#define fr first
#define sc second
#define mp make_pair
#define pb emplace_back
#define nl "\n"
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
int maximum_deevs(vector<int> y) {
int ans = 1;
int n = y.size();
bool ok[n][n] = {};
for(int i = 0; i < n; ++i) {
for(int j = i + 2; j < n; ++j) {
for(int k = i + 1; k < j; ++k) {
if(i * (y[k] - y[j]) - k * (y[i] - y[j]) + j * (y[i] - y[k]) < 0)
ok[i][j] = 1;
}
}
}
int dp[n] = {};
dp[n] = 1;
for(int i = n - 1; i >= 0; --i) {
dp[i] = 1;
for(int j = i + 2; j < n; ++j) {
if(ok[i][j]) {
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... |