# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1120243 | vjudge1 | Art Collections (BOI22_art) | C++17 | 248 ms | 7796 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;
}
for(int i = 1; i < n; i++) {
int pos = i;
for(int l = 0, r = i - 1; l <= r;) {
int mid = l + r >> 1;
vector<int> t, d;
for(int j = 0; j < mid; j++) {
t.push_back(p[j]);
d.push_back(p[j]);
}
t.push_back(p[i]);
d.push_back(p[mid]);
t.push_back(p[mid]);
d.push_back(p[i]);
for(int j = mid + 1; j < n; j++) {
if(j != i) t.push_back(p[j]);
if(j != i) d.push_back(p[j]);
}
if(ask(t) < ask(d)) {
pos = mid;
r = mid - 1;
}
else l = mid + 1;
}
vector<int> nw;
for(int j = 0; j < pos; j++) {
nw.push_back(p[j]);
}
nw.push_back(p[i]);
for(int j = pos; j < n; j++) {
if(j != i) nw.push_back(p[j]);
}
nw.swap(p);
}
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... |