# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
344840 | dimashii | Money (IZhO17_money) | C++17 | 1591 ms | 58952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxN = 1e6 + 123;
int A[mxN], B[mxN], f[mxN], R[mxN];
void Upd(int pos) {
for (int i = pos; i < mxN; i |= i + 1) ++f[i];
}
int Get(int pos) {
int ans = 0;
for (int i = pos; i >= 0; i &= i + 1, --i) ans += f[i];
return ans;
}
int Count(int l, int r) {
if (l > r) return 0;
return Get(r) - Get(l - 1);
}
int main() {
ios_base :: sync_with_stdio(false); cin.tie(nullptr);
int N; cin >> N;
for (int i = 1; i <= N; ++i) cin >> A[i];
R[N] = N;
for (int i = N - 1; i > 0; i--) {
if (A[i] <= A[i + 1]) R[i] = R[i + 1];
# | 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... |