# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1144677 | 12345678 | Zalmoxis (BOI18_zalmoxis) | C++20 | 118 ms | 32324 KiB |
#include <bits/stdc++.h>
using namespace std;
const int nx=1e6+5;
int n, k, a[nx], cnt;
stack<pair<int, int>> s;
vector<int> res[nx];
void insert(pair<int, int> x)
{
if (s.empty()) s.push(x);
else
{
if (s.top().first==x.first) s.pop(), insert({x.first+1, x.second});
else s.push(x);
}
}
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n>>k;
for (int i=1; i<=n; i++) cin>>a[i];
for (int i=1; i<=n; i++)
{
if (s.empty()) s.push({a[i], i});
else
{
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |