#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <unordered_map>
#include <functional>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include "popa.h"
using namespace std;
typedef long long llong;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<llong, llong> pll;
int n;
int solve(int N, int * L, int * R) {
n = N;
for (int i = 0; i < n; ++i) L[i] = R[i] = -1;
vector<int> st;
st.push_back(0);
for (int i = 1; i < n; ++i) {
while (!st.empty() && query(st.back(), i, i, i)) {
R[st.back()] = L[i];
L[i] = st.back();
st.pop_back();
}
if (!st.empty()) R[st.back()] = i;
st.push_back(i);
}
return st[0];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
256 KB |
Output is correct |
2 |
Correct |
13 ms |
256 KB |
Output is correct |
3 |
Correct |
11 ms |
256 KB |
Output is correct |
4 |
Correct |
10 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
123 ms |
376 KB |
Output is correct |
2 |
Correct |
76 ms |
376 KB |
Output is correct |
3 |
Correct |
59 ms |
376 KB |
Output is correct |
4 |
Correct |
85 ms |
492 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
47 ms |
388 KB |
Output is correct |
2 |
Correct |
121 ms |
504 KB |
Output is correct |
3 |
Correct |
102 ms |
748 KB |
Output is correct |
4 |
Correct |
84 ms |
620 KB |
Output is correct |