QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#210090 | #6303. Inversion | therehello | WA | 44ms | 18800kb | C++20 | 1.5kb | 2023-10-11 00:59:22 | 2023-10-11 00:59:23 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
void solve() {
int n;
cin >> n;
// vector<int> p(n + 1);
// for (int i = 1; i <= n; i++) cin >> p[i];
vector _f(n + 1, vector<int>(n + 1, -1));
// for (int l = 1; l <= n; l++) {
// int cnt = 0;
// for (int r = l + 1; r <= n; r++) {
// for (int i = l; i < r; i++) cnt += p[i] > p[r];
// _f[l][r] = cnt;
// }
// }
auto f = [&](int l, int r) {
if (l >= r) return 0;
if (_f[l][r] != -1) return _f[l][r];
cout << "? " << l << " " << r << endl;
int x;
cin >> x;
return _f[l][r] = x;
};
vector<int> a{1};
for (int i = 2; i <= n; i++) {
auto pos = lower_bound(a.begin(), a.end(), i, [&](int l, int r) {
int x = f(l, r) - f(l + 1, r) - f(l, r - 1) + f(l + 1, r - 1);
x = (x % 2 + 2) % 2;
return !x;
});
a.insert(pos, i);
}
vector<int> ans(n + 1);
for (int i = 0; i < n; i++) ans[a[i]] = i + 1;
// assert(ans == p);
cout << "! ";
for (int i = 1; i <= n; i++) cout << ans[i] << " ";
cout << endl;
}
int main() {
ios::sync_with_stdio(false);
int t = 1;
// cin >> t;
while (t--) solve();
#ifdef DEBUG
cout << "\n----------------\n";
cout << fixed << setprecision(6);
cout << "Times: " << 1.0 * clock() / CLOCKS_PER_SEC << "s\n";
#endif
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3676kb
input:
3 0 1 0
output:
? 1 2 ? 2 3 ? 1 3 ! 2 3 1
result:
ok OK, guesses=3
Test #2:
score: -100
Wrong Answer
time: 44ms
memory: 18800kb
input:
1993 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 1 1 0 1 1 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 1 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 1 1 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1 0 1 1 0 0 0 0 1 1 1 0 1 0 0 0 1 0 0 1 1 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0...
output:
? 1 2 ? 2 3 ? 2 4 ? 3 4 ? 3 5 ? 4 5 ? 2 5 ? 1 5 ? 1 4 ? 2 6 ? 3 6 ? 1 6 ? 5 6 ? 2 7 ? 3 7 ? 6 7 ? 5 7 ? 1 8 ? 2 8 ? 1 7 ? 3 8 ? 4 8 ? 4 7 ? 2 9 ? 3 9 ? 6 9 ? 7 9 ? 6 8 ? 7 8 ? 1 9 ? 9 10 ? 6 10 ? 7 10 ? 5 10 ? 5 9 ? 8 10 ? 8 9 ? 9 11 ? 10 11 ? 5 11 ? 6 11 ? 1 11 ? 2 11 ? 1 10 ? 2 10 ? 11 12 ? 8 12 ?...
result:
wrong output format Unexpected end of file - int32 expected