이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Ignut
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 1e18 + 123;
const int inf = 1e9 + 123;
const int N = 16;
ll dp[1 << N][N];
ll plan_roller_coaster(vector<int> s, vector<int> t) {
int n = s.size();
for (int i = 0; i < 1 << n; i ++)
for (int j = 0; j < n; j ++)
dp[i][j] = INF;
for (int i = 0; i < n; i ++)
dp[1 << i][i] = 0;
vector<pair<int, int>> lst;
for (int mask = 1; mask + 1 < 1 << n; mask ++) {
lst.push_back({__builtin_popcount(mask), mask});
}
sort(lst.begin(), lst.end());
for (auto [popcnt, mask] : lst) {
for (int i = 0; i < n; i ++) {
if (!(mask & (1 << i))) continue;
for (int j = 0; j < n; j ++) {
if (mask & (1 << j)) continue;
dp[mask | (1 << j)][j] = min(dp[mask | (1 << j)][j], dp[mask][i] + max(0, t[i] - s[j]));
}
}
}
ll res = INF;
for (int i = 0; i < n; i ++)
res = min(res, dp[(1 << n) - 1][i]);
return res;
}
/*
*/
# | 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... |