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