# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1110870 | Rainmaker2627 | Hacker (BOI15_hac) | C++17 | 48 ms | 8776 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;
struct maxqueue {
queue<int> q;
deque<int> dq;
void pop() {
int v=q.front();
if (v==dq.front()) dq.pop_front();
q.pop();
}
void push(int v) {
q.push(v);
while (!dq.empty() && dq.back()<v) dq.pop_back();
dq.push_back(v);
}
int query() {
return dq.front();
}
};
int main() {
cin.tie(0)->sync_with_stdio(false);
int n, c=0, t=0;
cin >> n;
vector<int> v(n), s(n);
# | 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... |