# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1120282 | vjudge1 | Art Collections (BOI22_art) | C++17 | 1885 ms | 63952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "art.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
map<vector<int>, int> u;
int cnt, n;
int ask(vector<int> v) {
if(u.count(v)) {
return u[v];
}
return u[v] = publish(v);
}
void solve(int N) {
n = N;
vector<int> p(n);
for(int i = 0; i < n; i++) {
p[i] = i + 1;
}
int cur = ask(p);
for(int i = 1; i < n; i++) {
vector<int> b = {p[i]};
for(int j = 0; j < n; j++) {
if(i != j) {
b.push_back(p[j]);
}
}
int tx = cur, ty = ask(b);
int x = i - (tx - ty + i) / 2;
vector<int> nw;
for(int j = 0; j < x; j++) {
nw.push_back(p[j]);
}
nw.push_back(p[i]);
for(int j = x; j < n; j++) {
if(j != i) nw.push_back(p[j]);
}
nw.swap(p);
cur -= i - x;
}
answer(p);
}
컴파일 시 표준 에러 (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... |