이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
ll lowbit(int x){return x&-x;}
ll dp[(1<<17)][20];
long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) {
int n = (int) s.size();
for(int i=1;i<(1<<n);i++){
for(int j=0;j<n;j++){
dp[i][j]=1e16;
if( ((i&(1<<j))==0)){continue;}
if(__builtin_popcount(i)==1){
dp[i][j]=0;
continue;
}
for(int k=0;k<n;k++){
if( !(i&(1<<k)) ){continue;}
if(k==j){continue;}
ll cst=dp[i^(1<<j)][k]+max(0,t[k]-s[j]);
dp[i][j]=min(dp[i][j],cst);
}
}
}
long long ret=dp[(1<<n)-1][0];
for(int j=0;j<n;j++){
ret=min(ret,dp[(1<<n)-1][j]);
}
return ret;
}
# | 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... |