이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "bubblesort2.h"
using namespace std;
const int MAX_N = 8000;
vector<int> a;
int maxpref[MAX_N], minsuff[MAX_N];
int badsegtree[MAX_N];
void update(int poz, int val, int n) {
maxpref[0] = a[0];
for(int i = 1; i < n; ++i)
maxpref[i] = max(maxpref[i - 1], a[i]);
minsuff[n - 1] = a[n - 1];
for(int i = n - 2; i >= 0; --i)
minsuff[i] = min(minsuff[i + 1], a[i]);
for(int i = 0; i < poz; ++i)
if(maxpref[i] > a[poz])
badsegtree[i] += val;
for(int i = poz; i < n - 1; ++i)
if(a[poz] > minsuff[i])
badsegtree[i] += val;
}
int getInv(int n) {
int rez = 0;
for(int i = 0; i < n; ++i)
rez = max(rez, badsegtree[i]);
return rez;
}
std::vector<int> countScans(std::vector<int> A,std::vector<int> X,std::vector<int> V){
int n, q;
a = A;
q = X.size();
std::vector<int> rez(q);
n = A.size();
for(int i = 0; i < q; ++i) {
update(X[i], -1, a[X[i]]);
a[X[i]] = V[i];
update(X[i], 1, V[i]);
rez[i] = getInv(n);
}
return rez;
}
# | 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... |