# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
251681 |
2020-07-22T07:18:34 Z |
VEGAnn |
Baloni (COCI15_baloni) |
C++14 |
|
0 ms |
0 KB |
#include <bits/stdc++.h>
#define sz(x) ((int)x.size())
#define i2 array<int,2>
using namespace std;
typedef long long ll;
const int N = 1000100;
const int C = 22;
const int md = 10007;
set<int> ps[N];
set<int>::iterator iter;
int n, a[N], ans, nm[N];
int mult(int x, int y) { return (x * y) % md; }
void SUM(int &x, int y){
x += y;
if (x >= md)
x -= md;
}
bool cmp(int _x, int _y){
if (a[_x] == a[_y])
return _x < _y;
else return a[_x] > a[_y];
}
int main() {
#ifdef _LOCAL
freopen("in.txt","r",stdin); // freopen("output.txt","w",stdout);
#else
// freopen("mining.in","r",stdin); freopen("mining.out","w",stdout);
ios_base::sync_with_stdio(0); cin.tie(0);
#endif
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i];
nm[i] = i;
}
sort(nm + 1, nm + n + 1, cmp);
for (int i = n; i > 0; i--)
ps[a[i]].insert(i);
int ptr = 1;
while (1){
while (ptr <= n && mrk[nm[ptr]])
ptr++;
if (ptr > n) break;
ans++;
int pst = nm[ptr], vl = a[nm[ptr]];
while (pst != 0){
if (sz(ps[vl - 1]) == 0) break;
iter = ps[vl - 1].upper_bound(pst);
if (iter == ps[vl - 1].end()) break;
ps[vl - 1].erase(iter);
pst = *iter;
vl--;
mrk[pst] = 1;
}
}
cout << ans;
return 0;
}
Compilation message
baloni.cpp: In function 'int main()':
baloni.cpp:50:28: error: 'mrk' was not declared in this scope
while (ptr <= n && mrk[nm[ptr]])
^~~
baloni.cpp:70:13: error: 'mrk' was not declared in this scope
mrk[pst] = 1;
^~~