# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1144421 | not_amir | Zalmoxis (BOI18_zalmoxis) | C++20 | 84 ms | 10400 KiB |
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
void print(int val, int cnt) {
if (cnt == 1)
cout << val << ' ';
else
print(val - 1, cnt / 2), print(val - 1, (cnt + 1) / 2);
}
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int n, k;
cin >> n >> k;
stack<int> stk;
vector<pair<int, bool>> ans;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
int prev = -1;
while (!stk.empty() && stk.top() < x) {
if (prev == -1)
prev = stk.top();
else {
for (int idx = prev; idx < stk.top(); idx++)
ans.push_back({idx, true});
prev = stk.top() + 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |