이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e6;
int n;
int a[maxn + 5];
int bit[maxn + 1];
void upd(int k, int v) {
for ( ; k <= n; k += (k & -k))
bit[k] += v;
}
int qry(int k) {
int ret = 0;
for (; k; k -= (k & -k))
ret += bit[k];
return ret;
}
int main() {
// freopen("main.in", "r", stdin);
cin >> n;
for (int i = 0; i < n; i++)
cin >> a[i];
// figure out nondecreasing sequences
int l = 0;
int ans = 0;
for (int i = 0; i < n; i++) {
if (i == n - 1 || a[i + 1] < a[i]) {
// [l, i]
for (int j = l + 1; j <= i; j++) {
// cout << l << ' ' << i << ' ' << j << endl;
// cout << qry(j) << ' ' << qry(j-1) << endl;
if (qry(a[j]) - qry(a[j - 1]))
ans++;
}
for (int j = l; j <= i; j++) {
upd(a[j], 1);
}
ans++;
l = i + 1;
}
}
cout << ans << endl;
return 0;
}
# | 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... |