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>
#include "aliens.h"
//Aliens - DnC variant
using namespace std;
//long long DP[6000][6000]; //dp[i][k]: Minimum cost for covering the first i segments with EXACTLY k pictures (obviously i>=k)
vector <vector <long long> > DP;
//Why tf are there segments here? Refer to the official editorial for that - the expaination seems good enough
const long long INF=2000000000000000000;
struct seg{
long long Start;
long long End;
};
seg Segments[200003];
vector <seg> ActualSegments;
//Custom sort function for removing uneeded segments. If a segment which starts at L and end at R is kept, alongside with another segment which starts at L' and end as R', and L'<= L <= R <= R' (aka: The segment is completely covered), the DP will become absolute shitfuckery and extremely wrong (trust me, I thought it would work but it didn't)
bool operator< (const seg &x, const seg &y){
if(x.Start==y.Start){
return x.End>y.End;
}else{
return x.Start<y.Start;
}
}
//Binpow template for non-shitty squaring
long long binpow(long long x, long long pow){
if(pow==1){
return x;
}
if(pow==0){
return 1;
}
return binpow(x,pow/2)*binpow(x,(pow+1)/2);
}
//Note to self: ur dum, imagine making the same fucking mistake twice, 8 months apart lmao
void DNC(int SubtreeLRange, int SubtreeRRange, int SubtreeLBound, int SubtreeRBound, int CurPics){
if(SubtreeLRange>SubtreeRRange){
return;
}
int mid=SubtreeLRange+SubtreeRRange;
mid/=2;
int OptPoint=SubtreeLBound;
long long CCost;
DP[mid][CurPics]=INF;
for(int i=SubtreeLBound;i<=SubtreeRBound&&i<mid;i++){
CCost=DP[i][CurPics-1]+binpow(ActualSegments[mid].End-ActualSegments[i+1].Start+1,2)-binpow(max(0ll,ActualSegments[i+1].Start-ActualSegments[i].End+1),2);
if(CCost<DP[mid][CurPics]){
DP[mid][CurPics]=CCost;
OptPoint=i;
}
}
DNC(SubtreeLRange,mid-1,SubtreeLBound,OptPoint, CurPics);
DNC(mid+1,SubtreeRRange,OptPoint,SubtreeRBound, CurPics);
}
long long take_photos(int N,int M, int Pics, vector <int> Rows, vector <int> Columns){
for(int i=1;i<=N;i++){
Segments[i]={min(Rows[i-1],Columns[i-1])+1,max(Rows[i-1],Columns[i-1])+1};
}
sort(Segments+1,Segments+N+1);
ActualSegments.push_back({0,0});
//Removing the fully-covered segments: It is easy to see that our resulting set of segments will have the later segments have both higher start and endpoints when compared to all previous ones, so...... Again, if you can't understand this, you shouldn't try learning about fucking ALIENS' TRICK just yet.
for(int i=1;i<=N;i++){
if(Segments[i].End>ActualSegments.back().End){
ActualSegments.push_back(Segments[i]);
}
}
N=ActualSegments.size()-1;
Pics=min(Pics,N);
DP.resize(N+3,vector <long long>(Pics+3,0));
//Now, the DP.
/*
Knuth opt is retarded so I opt to DnC. Strictly stronger and easier to implement. Will code first then comment later eventually
*/
long long Ans=INF;
for(int i=1;i<=N;i++){
DP[i][0]=INF;
//DP[i][1]=binpow(ActualSegments[i].End-ActualSegments[1].Start+1,2);
}
for(int k=1;k<=Pics;k++){
DP[0][k]=INF;
}
Ans=INF;
for(int i=1;i<=Pics;i++){
DNC(1,N,1,N,i);
}
for(int i=1;i<=Pics;i++){
Ans=min(Ans,DP[N][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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |