이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include <bits/stdc++.h>
using namespace std;
#define rep(i, j, k) for (int i = j; i < (int)k; i++)
#define pb push_back
#define all(x) x.begin(), x.end()
typedef long long ll;
ll dp[1 << 17][17];
void smin(ll &a, ll b) {
if (b < a) a = b;
}
long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) {
int n = (int)s.size();
if (n <= 16) {
rep(mask, 1, (1 << n)) {
rep(r, 0, n) {
dp[mask][r] = 1e18;
if (__builtin_popcount(mask) == 1) {
if ((mask >> r) & 1) dp[mask][r] = 0;
continue;
}
if (!((mask >> r) & 1)) continue;
rep(i, 0, n) {
if (i != r && (mask >> i) & 1)
smin(dp[mask][r], dp[mask ^ (1 << r)][i] + max(0, t[i] - s[r]));
}
}
}
ll res = 1e18;
rep(i, 0, n) smin(res, dp[(1 << n) - 1][i]);
return res;
}
s.pb(1e9);
t.pb(1);
sort(all(s));
sort(all(t));
rep(i, 0, t.size()) {
int go = s.end() - lower_bound(all(s), t[i]);
if (go < (t.size() - i)) return 1;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
railroad.cpp: In function 'long long int plan_roller_coaster(std::vector<int>, std::vector<int>)':
railroad.cpp:50:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (go < (t.size() - i)) return 1;
~~~^~~~~~~~~~~~~~~~
# | 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... |