이 제출은 이전 버전의 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> position(n);
vector<int> empty(n);
for (int i = 0; i < n; i++)
empty[i] = i + 1;
map<vector<int>, int> answers;
for (int i = 0; i < n; i++)
{
vector<int> queryA = empty;
vector<int> queryB = empty;
swap(queryA.back(), queryA[i]);
swap(queryB[0], queryB[i]);
int a, b;
if (answers.count(queryA))
a = answers[queryA];
else
a = answers[queryA] = publish(queryA);
if (answers.count(queryB))
b = answers[queryB];
else
b = answers[queryB] = publish(queryB);
int diff = b - a;
int pos = (n + diff - 1) / 2;
position[i] = pos;
}
vector<int> sol(n);
for (int i = 0; i < n; i++)
{
sol[position[i]] = i + 1;
}
answer(sol);
}
#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... |