이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "aliens.h"
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define vi vector<int>
#define vll vector<ll>
#define ll long long
using namespace std;
const int tam=505;
int N;
ll dp[tam][tam];
vi v;
ll f(int pos, int k){
if(pos>=N)return 0;
if(k==0)return 1e9;
if(dp[pos][k]!=-1)return dp[pos][k];
dp[pos][k]=1e16;
for(int i=pos+1;pos<N;i++){
ll tam=v[i]-v[pos]+1;
dp[pos][k]=min(dp[pos][k],tam*tam+f(i+1,k-1));
}
return dp[pos][k];
}
long long take_photos(int n, int m, int k,vi r,vi c){
N=n;
v=r;
memset(dp,-1,sizeof(dp));
return f(0,k);
}
# | 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... |