이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ii = pair<int,int>;
using ll = long long;
constexpr int MAXN = 16;
constexpr ll INF = 1LL<<58;
ll memo[MAXN][1<<MAXN];
ll dp(int u, int bm, const vector<int>& s, const vector<int>& t) {
bm ^= (1<<u);
if (bm == 0) return 0;
ll& ans = memo[u][bm];
if (ans != -1) return ans;
ans = INF;
for (int j = 0; j < (int)s.size(); ++j) {
if ((bm>>j)&1) {
ans = min(ans, dp(j, bm, s, t) + max(0, t[u] - s[j]));
}
}
return ans;
}
ll plan_roller_coaster(vector<int> s, vector<int> t) {
memset(memo, -1, sizeof memo);
ll ans = INF;
const int n = (int)s.size();
for (int i = 0; i < n; ++i) {
ans = min(ans, dp(i, (1<<n)-1, s, t));
}
return ans;
}
# | 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... |