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