이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "minerals.h"
#include <bits/stdc++.h>
#define All(x) x.begin(), x.end()
#define pb emplace_back
using namespace std;
#define debug(args...) kout("[ " + string(#args) + " ]", args)
void kout() { cerr << endl; }
template <class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ',kout(b...); }
template <class T> void pary(T L, T R) { while (L != R) cerr << *L << " \n"[++L==R]; }
void Solve(int N) {
srand(time(NULL));
vector <int> num(2*N);
for (int i = 0; i < 2*N; i++) num[i] = i+1;
random_shuffle(All(num));
deque <int> dq;
vector <int> tmp;
int now = 0, prev = 0;
for (int i = 0; i < 2*N; i++) {
int id = num[i];
//debug(id);
prev = now;
now = Query(id);
dq.push_back(id);
if (now != prev+1) {
while (true) {
prev = now;
now = Query(dq.front());
if (now == prev-1) {
tmp.pb(dq.front());
dq.pop_front();
} else {
//debug(id, dq.front());
Answer(id, dq.front());
dq.pop_front();
break;
}
}
}
for (int i : tmp) {
dq.push_front(i);
//debug(i);
now = Query(i);
}
tmp.clear();
}
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |