#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1e6 + 7;
int n;
int a[N];
bool vis[N];
set<int> s[N];
int h = 0;
int get_nxt(int pos, int val) {
pos++;
auto it = s[val].lower_bound(pos);
if (it == s[val].end()) {
return -1;
}
s[val].erase(it);
return *it;
}
void dfs(int i) {
vis[i] = 1;
--h;
int j = get_nxt(i, h);
if (h == 0) {
return;
}
if (j == -1) {
j = i;
--h;
}
if (h == 0) {
return;
}
dfs(j);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n;
for (int i = 1; i <= n; ++i) {
cin >> a[i];
s[a[i]].insert(i);
}
int ans = 0;
for (int i = 1; i <= n; ++i) {
if (!vis[i]) {
h = a[i];
dfs(i);
++ans;
}
}
cout << ans << "\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
10 ms |
49756 KB |
Output isn't correct |
2 |
Incorrect |
10 ms |
49756 KB |
Output isn't correct |
3 |
Incorrect |
11 ms |
50080 KB |
Output isn't correct |
4 |
Incorrect |
13 ms |
50012 KB |
Output isn't correct |
5 |
Correct |
784 ms |
89072 KB |
Output is correct |
6 |
Correct |
761 ms |
93540 KB |
Output is correct |
7 |
Incorrect |
575 ms |
86116 KB |
Output isn't correct |
8 |
Incorrect |
565 ms |
85836 KB |
Output isn't correct |
9 |
Correct |
634 ms |
87712 KB |
Output is correct |
10 |
Correct |
660 ms |
89156 KB |
Output is correct |