| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 440132 | julian33 | Cover (COCI18_cover) | C++14 | 29 ms | 396 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {
    cerr<<vars<<" = ";
    string delim="";
    (...,(cerr<<delim<<values,delim=", "));
    cerr<<"\n";
}
#else
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {}
#endif
#define pb push_back
#define sz(x) (int)(x.size())
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<typename T> inline void maxa(T& a,T b){a=max(a,b);}
template<typename T> inline void mina(T& a,T b){a=min(a,b);} 
const int mxN=5e3+5;
pll pts[mxN];
ll dp[mxN];
int main(){
    cin.sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    #ifdef LOCAL
        freopen("input.txt","r",stdin);
        freopen("output.txt","w",stdout);
    #endif
    int n; cin>>n;
    for(int i=1;i<=n;i++){
        cin>>pts[i].first>>pts[i].second;
        pts[i].first=abs(pts[i].first);
        pts[i].second=abs(pts[i].second);
    }
    fill(dp+1,dp+1+n,1e16);
    sort(pts+1,pts+1+n);
    for(int i=1;i<=n;i++){
        ll cx=pts[i].first;
        ll cy=pts[i].second;
        for(int j=i-1;j>=0;j--){
            mina(dp[i],4*cx*cy+dp[j]);
            maxa(cx,pts[j].first);
            maxa(cy,pts[j].second);
        }
    }
    cout<<dp[n]<<"\n";
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
