# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
651115 | Specialistas13 | Art Collections (BOI22_art) | C++17 | 1 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "art.h"
#include <bits/stdc++.h>
using namespace std;
void solve(int N) {
vector<int> order;
int poz[5000];
int comp[5000];
bool taken[5000];
int x, y, z, bad=0;
for (int i=1; i<=N; i++){
order.push_back(i);
poz[i]=0;
comp[i]=0;
taken[i]=false;
}
x=publish(order);
for (int i=1; i<=N-1; i++){
order.clear();
for (int j=N-i; j>=1; j--){
order.push_back(j);
}
for (int j=N-i+1; j<=N; j++){
order.push_back(j);
}
y=publish(order);
z=(x+y-((N-i)*(N-i-1)/2)-bad)/2;
comp[N-i+1]=z;
bad+=z*2;
}
for (int i=N; i>=2; i--){
poz[N-comp[i]]=i;
cout<<i<<" poz "<<poz[N-comp[i]]<<"\n";
taken[N-comp[i]]=true;
}
cout<<poz[2];
for (int i=1; i<=N; i++){
if (!taken[i]){
poz[i]=1;
//cout<<i;
break;
}
}
order.clear();
for (int i=1; i<=N; i++){
cout<<poz[i];
order.push_back(poz[i]);
}
answer(order);
}
컴파일 시 표준 에러 (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... |