# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
144631 | SamAnd | Zagonetka (COI18_zagonetka) | C++17 | 12 ms | 380 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int N = 102;
int n;
int a[N];
int b[N][N];
int minu[N], maxu[N];
bool qry(int a[])
{
cout << "query";
for (int k = 1; k <= n; ++k)
cout << ' ' << a[k];
cout << endl;
int x;
cin >> x;
return x;
}
bool stg(int a[], int i)
{
for (int j = 1; j <= n; ++j)
{
if (b[i][j])
{
if (b[i][j] == -1 && a[i] > a[j])
return false;
if (b[i][j] == 1 && a[i] < a[j])
return false;
}
}
return true;
}
int main()
{
cin >> n;
for (int i = 1; i <= n; ++i)
cin >> a[i];
if (n <= 6)
{
for (int i = 1; i <= n; ++i)
minu[i] = maxu[i] = a[i];
sort(a + 1, a + n + 1);
do
{
if (qry(a))
{
for (int i = 1; i <= n; ++i)
{
if (a[i] == minu[i])
continue;
if (a[i] < minu[i])
{
for (int j = 1; j <= n; ++j)
minu[j] = a[j];
}
break;
}
for (int i = 1; i <= n; ++i)
{
if (a[i] == maxu[i])
continue;
if (a[i] > maxu[i])
{
for (int j = 1; j <= n; ++j)
maxu[j] = a[j];
}
break;
}
}
} while (next_permutation(a + 1, a + n + 1));
cout << "end" << endl;
for (int i = 1; i <= n; ++i)
cout << minu[i] << ' ';
cout << endl;
for (int i = 1; i <= n; ++i)
cout << maxu[i] << ' ';
cout << endl;
}
else
{
for (int i = 1; i <= n; ++i)
{
for (int j = i + 1; j <= n; ++i)
{
swap(a[i], a[j]);
if (qry(a) == 0)
{
swap(a[i], a[j]);
cout << "end" << endl;
if (a[i] < a[j])
{
for (int k = 1; k <= n; ++k)
cout << k << ' ';
cout << endl;
int z = n + 1;
int t;
for (int k = 1; k <= n; ++k)
{
if (k == i)
{
cout << z - 2 << ' ';
t = z - 1;
z -= 2;
continue;
}
if (k == j)
{
cout << t << ' ';
continue;
}
cout << --z << ' ';
}
cout << endl;
}
else
{
int z = 0;
int t;
for (int k = 1; k <= n; ++k)
{
if (k == i)
{
cout << z + 2 << ' ';
t = z + 1;
z += 2;
continue;
}
if (k == j)
{
cout << t << ' ';
continue;
}
cout << ++z << ' ';
}
for (int k = 1; k <= n; ++k)
cout << n - k + 1 << ' ';
cout << endl;
}
return 0;
}
swap(a[i], a[j]);
}
}
}
return 0;
}
Compilation message (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... |