| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 849265 | vjudge1 | Art Collections (BOI22_art) | C++17 | 3070 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "art.h"
#include "bits/stdc++.h"
using namespace std;
const int mxN = 4007;
int n, pos[mxN];
bool les[mxN][mxN];
void fix(int a, int b) {
les[a][b] = true;
for (int c = 1; c <= n; ++c) {
if (les[b][c]) {
fix(a, c);
}
}
}
void solve(int N) {
n = N;
vector<int> check;
for (int i = 1; i <= n; ++i) {
check.push_back(i);
pos[i] = i - 1;
}
int cur = publish(check);
while (cur) {
for (int i = 0; i < n - 1 && cur; ++i) {
int a = check[i], b = check[i + 1];
if (!les[a][b] && !les[b][a]) {
swap(check[i], check[i + 1]);
int nex = publish(check);
if (nex < cur) {
cur = nex;
/*
for (auto x : check) {
cout << x << ' ';
}
cout << "\n";
*/
fix(b, a);
}
else {
fix(a, b);
swap(check[i], check[i + 1]);
}
}
else if (les[b][a]) {
/*
for (auto x : check) {
cout << x << ' ';
}
cout << "\n";
*/
swap(check[i + 1], check[i]);
--cur;
}
}
}
answer(check);
}
컴파일 시 표준 에러 (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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
