이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef _DEBUG
#include <art.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx")
#endif
using namespace std;
#define lint int64_t
#ifdef _DEBUG
int publish(vector<int> R)
{
for (int i : R)
cout << i << " ";
cout << "\n";
int x;
cin >> x;
return x;
}
void answer(vector<int> R)
{
cout << "Answer: ";
for (int i : R)
cout << i << " ";
cout << "\n";
}
#endif
void solve(int N)
{
int n = N;
vector<int> empty(n);
for (int i = 0; i < n; i++)
empty[i] = i + 1;
int last = publish(empty);
for (int i = 1; i < n; i++)
{
vector<int> current = empty;
int v = current[i];
current.erase(current.begin() + i);
current.insert(current.begin(), v);
int curr = publish(current);
int diff = curr - last;
int pos = ((i + 1) + diff - 1) / 2;
empty.erase(empty.begin() + i);
empty.insert(empty.begin() + pos, v);
last -= i - pos;
}
answer(empty);
}
#ifdef _DEBUG
int main()
{
int n;
cin >> n;
solve(n);
}
#endif
컴파일 시 표준 에러 (stderr) 메시지
interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
20 | if(v.size() != N) {
| ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
36 | if(v.size() != N) {
| ~~~~~~~~~^~~~
# | 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... |