Submission #937402

#TimeUsernameProblemLanguageResultExecution timeMemory
937402LibAliens (IOI16_aliens)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "aliens.h" //Aliens - CHT 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; long long M; int N; //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); } //Define lines type struct Lines{ //form: y=ax+b, where x will eventually be the endpoint coordinate of a segment long long Slopes; //a long long Extras; //b } vector <Lines> CurrentConvexHull; void CalcDP(int k){ CurrentConvexHull.clear(); } 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. long long Ans=INF; for(int i=1;i<=N;i++){ DP[i][0]=INF; } for(int k=1;k<=Pics;k++){ DP[0][k]=INF; } Ans=INF; for(int i=1;i<=Pics;i++){ CalcDP(i); } for(int i=1;i<=Pics;i++){ Ans=min(Ans,DP[N][i]); } return Ans; }

Compilation message (stderr)

aliens.cpp:43:16: error: invalid declarator before 'CurrentConvexHull'
   43 | vector <Lines> CurrentConvexHull;
      |                ^~~~~~~~~~~~~~~~~
aliens.cpp: In function 'void CalcDP(int)':
aliens.cpp:45:2: error: 'CurrentConvexHull' was not declared in this scope
   45 |  CurrentConvexHull.clear();
      |  ^~~~~~~~~~~~~~~~~