# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
617308 | Hazem | Aliens (IOI16_aliens) | C++14 | 2077 ms | 17072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define F first
#define S second
#define LL long long
using namespace std;
const int N = 4e3+10;
const LL LINF = 1e18;
pair<int,int>p[N];
LL dp[N][N];
bool cmp(pair<int,int>p1,pair<int,int>p2){
if(p1.F!=p2.F)
return p1.F<p2.F;
return p1.S>p2.S;
}
long long take_photos(int n, int m, int k, std::vector<int> r, std::vector<int> c) {
for(int i=0;i<n;i++){
if(r[i]>c[i])
swap(r[i],c[i]);
p[i] = {c[i],r[i]};
}
sort(p,p+n);
vector<pair<int,int>>vec;
int mn = 1e9+10;
for(int i=n-1;i>=0;i--){
if(mn<=p[i].S)
continue;
vec.push_back(p[i]);
mn = min(mn,p[i].S);
}
vec.push_back({-1,-1});
reverse(vec.begin(),vec.end());
for(int j=1;j<=k;j++)
dp[0][j] = LINF;
for(int i=1;i<vec.size();i++){
dp[i][0] = LINF;
for(int j=1;j<=k;j++){
dp[i][j] = LINF;
for(int j1=i;j1>=1;j1--){
LL d = (vec[i].F-vec[j1].S+1),d1 = max(0,vec[j1-1].F-vec[j1].S+1);
d *= d;
d1 *= d1;
dp[i][j] = min(dp[i][j],dp[j1-1][j-1]+d-d1);
}
}
}
LL ans = LINF;
for(int i=1;i<=k;i++)
ans = min(ans,dp[vec.size()-1][i]);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |