# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1014124 | atom | Abracadabra (CEOI22_abracadabra) | C++17 | 149 ms | 18256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
// @JASPER'S BOILERPLATE
using namespace std;
using ll = long long;
#ifdef JASPER
#include "debug.h"
#else
#define debug(...) 166
#endif
const int N = 1e5 + 5;
vector <int> ans[N];
signed main() {
cin.tie(0) -> sync_with_stdio(0);
#ifdef JASPER
freopen("in1", "r", stdin);
#endif
int n, q;
cin >> n >> q;
vector <int> a(n);
for (int i = 0; i < n; ++i) cin >> a[i];
if (n <= 1000) {
int m = n / 2;
ans[0] = a;
for (int t = 1; t <= n; ++t) {
queue <int> l, r;
vector <int> b;
for (int i = 0; i < m; ++i) l.push(a[i]);
for (int i = m; i < n; ++i) r.push(a[i]);
while (!l.empty() || !r.empty()) {
if (!l.empty() && !r.empty() && l.front() < r.front()) {
b.push_back(l.front());
l.pop();
}
if (!l.empty() && !r.empty() && l.front() > r.front()) {
b.push_back(r.front());
r.pop();
}
if (l.empty()) {
while (!r.empty()) {
b.push_back(r.front());
r.pop();
}
}
if (r.empty()) {
while (!l.empty()) {
b.push_back(l.front());
l.pop();
}
}
}
debug(b);
ans[t] = b;
a = b;
}
while (q--) {
int x, i;
cin >> x >> i;
x = min(x, n);
cout << ans[x][i - 1] << "\n";
}
}
return 0;
}
컴파일 시 표준 에러 (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... |