#include <bits/stdc++.h>
#define ll long long
#define TASKNAME ""
using namespace std;
const int INF = 1e9 + 7;
const int MAXN = 1e6 + 7;
const double EPS = 1e-8;
vector <vector <int> > gr;
vector <vector <int> > rev_gr;
int n;
vector <int> p;
vector <int> pos;
void query(vector <int> &a) {
cout << "query ";
for (int x : a) {
cout << x + 1 << " ";
}
cout << endl;
}
vector <bool> used;
void dfs(int v) {
if (used[v]) return;
used[v] = 1;
for (int u : rev_gr[v]) {
dfs(u);
}
}
vector <int> lvls;
vector <bool> used1;
int main() {
#ifdef MY
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
#else
//freopen(TASKNAME".in", "r", stdin);
//freopen(TASKNAME".out", "w", stdout);
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
#endif // MY
cin >> n;
p.resize(n);
pos.resize(n, 0);
for (int i = 0; i < n; i++) {
cin >> p[i];
p[i]--;
pos[p[i]] = i;
}
gr.resize(n);
rev_gr.resize(n);
for (int i = n - 1; i >= 0; i--) {
used.assign(n, 0);
for (int j = i + 1; j < n; j++) {
if (used[j]) {
gr[j].push_back(i);
rev_gr[i].push_back(j);
continue;
}
auto q = p;
int v = j;
while (gr[v].size()) {
int u = gr[v][0];
swap(q[pos[v]], q[pos[u]]);
v = u;
}
swap(q[pos[v]], q[pos[i]]);
v = i;
while (rev_gr[v].size()) {
int u = rev_gr[v][0];
if (u > v) break;
swap(q[pos[v]], q[pos[u]]);
v = u;
}
query(q);
int ans;
cin >> ans;
if (!ans) {
gr[j].push_back(i);
rev_gr[i].push_back(j);
dfs(j);
}
}
}
cout << "end" << endl;
vector <int> resa(n), resb(n);
set <int> q;
vector <int> cnt(n, 0);
for (int i = 0; i < n; i++) {
cnt[i] = gr[i].size();
if (!cnt[i]) {
q.insert(pos[i]);
}
}
int now = 0;
while (!q.empty()) {
int v = *q.begin();
q.erase(v);
resa[v] = now++;
for (int u : rev_gr[p[v]]) {
cnt[u]--;
if (!cnt[u]) {
q.insert(pos[u]);
}
}
}
for (int i = 0; i < n; i++) {
cnt[i] = gr[i].size();
if (!cnt[i]) {
q.insert(pos[i]);
}
}
now = 0;
while (!q.empty()) {
int v = *q.rbegin();
q.erase(v);
resb[v] = now++;
for (int u : rev_gr[p[v]]) {
cnt[u]--;
if (!cnt[u]) {
q.insert(pos[u]);
}
}
}
for (int x : resa) {
cout << x + 1 << " ";
}
cout << endl;
for (int x : resb) {
cout << x + 1 << " ";
}
cout << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
308 KB |
Output is correct |
3 |
Correct |
2 ms |
512 KB |
Output is correct |
4 |
Correct |
2 ms |
512 KB |
Output is correct |
5 |
Incorrect |
2 ms |
512 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
540 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
540 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
64 ms |
592 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |