# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
35190 | ulna | Money (IZhO17_money) | C++11 | 0 ms | 9828 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
// why am I so weak
int n;
int a[1000055];
int d[1000055];
inline void read(int &x) {
x = 0;
char ch = 0;
while (ch < '0' || ch > '9') ch = getchar();
while (ch >= '0' && ch <= '9') {
x = x * 10 + (ch - '0');
ch = getchar();
}
}
int main() {
scanf("%d", &n);
for (int i = 0; i < n; i++) {
read(a[i]);
}
int res = 1;
for (int i = n - 1; i >= 0; i--) {
d[a[i]]++;
if (i != n - 1 && a[i + 1] != a[i]) {
if (d[a[i + 1] - 1] - d[a[i]] > 0 || a[i + 1] < a[i]) {
res++;
}
}
}
printf("%d\n", res);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |