# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
574136 | eecs | Boarding Passes (BOI22_passes) | C++17 | 2044 ms | 468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int n = 15;
string str;
long long f[1 << n];
int main() {
ios::sync_with_stdio(0), cin.tie(0);
cin >> str;
static bool vis[n];
for (char c : str) vis[c - 'A'] = 1;
fill(f + 1, f + (1 << n), 1e18);
for (int S = 0; S < 1 << n; S++) {
for (int i = 0; i < n; i++) if (!(S >> i & 1)) {
if (!vis[i]) {
f[S | (1 << i)] = min(f[S | (1 << i)], f[S]); continue;
}
auto calc = [&](int p) {
int c0 = 0, c1 = 0;
long long s = 0;
for (int j = p; ~j; j--) {
if (str[j] - 'A' == i) c0++;
else if (S >> (str[j] - 'A') & 1) s += c0;
}
for (int j = p + 1; j < str.size(); j++) {
if (str[j] - 'A' == i) c1++;
else if (S >> (str[j] - 'A') & 1) s += c1;
}
return 2 * s + 1LL * c0 * (c0 - 1) / 2 + 1LL * c1 * (c1 - 1) / 2;
};
for (int p = -1; p < (int)str.size(); p++) {
f[S | (1 << i)] = min(f[S | (1 << i)], f[S] + calc(p));
}
}
}
cout << f[(1 << n) - 1] / 2 << "." << (f[(1 << n) - 1] % 2 ? 5 : 0) << "\n";
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |