이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "aliens.h"
//#pragma GCC optimize("O3")
//#pragma GCC target("avx,avx2,fma")
#define sz(x) int((x).size())
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using namespace std;
using ll = long long;
using ld = long double; // or double, if TL is tight
using str = string;
using ii = pair<int, int>;
using pl = pair<ll, ll>;
using vi = vector<int>;
using vll = vector<ll>;
ll take_photos(int n0, int m, int k, vi r, vi c) {
vector<ii> SegInit;
for(int i = 0; i < n0; ++i) {
SegInit.push_back({min(r[i], c[i]), max(r[i], c[i]) + 1});
}
sort(all(SegInit), [&](auto a, auto b) {
if(a.first != b.first) return a < b;
return a > b;
});
vector<ii> Seg;
int cur_dr = -1;
for(auto [st, dr] : SegInit) {
if(dr <= cur_dr) continue;
else {
Seg.push_back({st, dr});
cur_dr = dr;
}
}
int n = Seg.size();
vll st(n, 0), dr(n, 0), sb(n, 0);
for(int i = 0; i < n; ++i) {
st[i] = Seg[i].first; dr[i] = Seg[i].second;
sb[i] = (dr[i] - st[i]) * (dr[i] - st[i]);
if(i) {
if(dr[i - 1] > st[i])
sb[i] -= (dr[i - 1] - st[i]) * (dr[i - 1] - st[i]);
sb[i] += sb[i - 1];
}
}
auto cost = [&](int i, int j) {
return (dr[j] - st[i]) * (dr[j] - st[i]) - (dr[i] - st[i]) * (dr[i] - st[i])
- sb[j] + sb[i];
return dr[j] * dr[j] - sb[j] + 2 * st[i] * dr[i]
- dr[i] * dr[i] + sb[i] - 2 * st[i] * dr[j];
};
ll re0 = sb.back();
const ll INF = 1e16;
vector<vector<ll> > DP(n, vector(k + 1, INF));
for(int i = 0; i < n; ++i) {
DP[i][1] = cost(0, i);
for(int j = 2; j <= k; ++j) {
for(int p = 1; p <= i; ++p)
DP[i][j] = min(DP[i][j], DP[p - 1][j - 1] + cost(p, i));
}
}
ll re = INF;
for(auto it : DP[n - 1]) re = min(re, it);
re += re0;
return re;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |