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 <bits/stdc++.h>
using namespace std;
#define lli long long int
#define pb push_back
#define eb emplace_back
#define pii pair<int,int>
#define X first
#define Y second
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
void abc() {cout << endl;}
template <typename T, typename ...U> void abc(T i, U ...j) {
cout << i << ' ', abc(j...);
}
template <typename T> void printv(T l, T r) {
for (; l != r; ++l) cout << *l << " \n"[l + 1 == r];
}
#ifdef Doludu
#define test(x...) abc("[" + string(#x) + "]", x)
#define owo freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout)
#else
#define test(x...) void(0)
#define owo ios::sync_with_stdio(false), cin.tie(0)
#endif
const int N = 200000;
int main () {
owo;
int n;
cin >> n;
vector <int> p(n);
for (int i = 0; i < n; ++i)
cin >> p[i], --p[i];
vector <int> dp(n + 1, 1 << 30);
vector <vector <int>> cost(n + 1, vector <int> (n + 1, 0));
for (int r = 1; r <= n; ++r) {
vector <int> ord;
for (int i = 0; i < n; ++i) if (p[i] < r)
ord.pb(p[i]);
for (int l = r - 1; ~l; --l) {
vector <int> v = ord;
int res = 0;
for (int i = l; i < r; ++i) {
int pos = find(all(v), i) - v.begin();
res += int(v.size()) - pos - 1;
v.erase(v.begin() + pos);
}
cost[l][r] = res;
}
}
dp[0] = 0;
for (int i = 1; i <= n; ++i) {
for (int j = 0; j < i; ++j) {
// max at postion j
dp[i] = min(dp[i], dp[j] + cost[j][i]);
}
}
cout << dp[n] << 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... |