| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1054093 | NeroZein | Bubble Sort 2 (JOI18_bubblesort2) | C++17 | 0 ms | 0 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#ifdef Nero
#include "Deb.h"
#else
#define debug(...)
#endif
const int M = 1e5 + 5;
int tree[M];
void upd (int id, int v) {
  id++;
  while (id < M) {
    tree[id] += v;
    id += id & -id;
  }
}
int qry (int id) {
  id++;
  int ret = 0; 
  while (id) {
    ret += tree[id];
    id -= id & -id; 
  }
  return ret; 
}
int count(vector<int>& a) {
  int ret = 0;
  int n = (int) a.size();
  vector<int> ord(n);
  iota(ord.begin(), ord.end(), 0);
  sort(ord.begin(), ord.end(), [&](int i, int j) {
    return (a[ord[i]] == a[ord[j]] ? i > j : a[ord[i]] > a[ord[j]]);
  });
  for (int i : ord) {
    ret = max(ret, qry(i));
    upd(i, 1); 
  }
  for (int i = 0; i < n; ++i) {
    upd(i, -1); 
  }
  return ret; 
}
int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int n, q;
  cin >> n >> q;
  vector<int> a(n); 
  for (int i = 0; i < n; ++i) {
    cin >> a[i];
  }
  while (q--) {
    int x, v;
    cin >> x >> v;
    a[x] = v;
    cout << count(a) << '\n';
  }
  return 0;
}
