# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
736421 | VadimK | Art Collections (BOI22_art) | C++17 | 148 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
/**
* returns how many complaints you will receive for this ordering of the art collections
*/
using namespace std;
int publish(vector<int>);
/**
* use this function when you have found the correct order of the art collections
* You must call answer exactly once; your program will be automatically
* terminated afterwards.
*/
void answer(vector<int>);
/**
* implement this function
*/
void solve(int N)
{
vector <int> guess(N),change(N);
for (int i=0; i<N; i++)
{
guess[i]=i+1;
change[i]=i+1;
}
for (int i=1; i<N; i++)
{
int pos=i;
int ans=publish(change);
for (int j=i; j>=1; j--)
{
swap(change[j],change[j-1]);
int cur=publish(change);
if (cur<ans) {ans=cur; pos=j-1;}
}
int x=i;
while (x>pos)
{
swap(guess[x],guess[x-1]);
x--;
}
for (int i=0; i<N; i++)
change[i]=guess[i];
}
answer(guess);
return;
}
컴파일 시 표준 에러 (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... |