# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
299688 | E869120 | Cheerleaders (info1cup20_cheerleaders) | C++14 | 2052 ms | 1280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long N;
long long A[1 << 18], B[1 << 18];
long long c1[22], c2[22];
void dfs(int l, int r, int dep) {
if (r - l == 1) return;
int m = (l + r) / 2;
for (int i = l; i < m; i++) {
for (int j = m; j < r; j++) {
if (A[i] < A[j]) c1[dep] += 1;
if (A[i] > A[j]) c2[dep] += 1;
}
}
dfs(l, m, dep + 1);
dfs(m, r, dep + 1);
}
void rollback() {
for (int j = 0; j < (1 << N); j++) {
if (j % 2 == 0) B[j / 2] = A[j];
if (j % 2 == 1) B[(j / 2) + (1 << (N - 1))] = A[j];
}
for (int j = 0; j < (1 << N); j++) A[j] = B[j];
}
int main() {
// Step #1. Input
scanf("%d", &N);
for (int i = 0; i < (1 << N); i++) scanf("%d", &A[i]);
// Step #2. Initialize
long long Answer = (1LL << 60);
if (N == 0LL) Answer = 0;
string AnswerLen = "";
// Step #3. Calc
for (int i = 0; i <= N - 1; i++) {
for (int j = 0; j < N; j++) { c1[j] = 0; c2[j] = 0; }
dfs(0, (1 << N), 0);
long long sum = 0;
for (int j = 0; j < N; j++) sum += min(c1[j], c2[j]);
if (Answer > sum) {
Answer = sum;
string str = "";
for (int j = 0; j < i; j++) str += "2";
for (int j = 0; j < N; j++) {
str += "2";
if (c1[j] > c2[j]) str += "1";
}
AnswerLen = str;
}
rollback();
}
cout << Answer << endl;
cout << AnswerLen << endl;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |