/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 1ms 320.0 KiB
#3 Accepted 62ms 2.07 MiB
#4 Accepted 141ms 4.531 MiB
#5 Accepted 84ms 3.758 MiB
#6 Accepted 59ms 1.566 MiB
#7 Accepted 1ms 764.0 KiB
#8 Accepted 1ms 324.0 KiB
#9 Accepted 152ms 4.926 MiB
#10 Accepted 202ms 6.125 MiB

Code

// @sagorahmedmunna

#include <bits/stdc++.h>
using namespace std;

const int INF = 1.1e9;

int main() {
  ios_base::sync_with_stdio(0), cin.tie(0);
  
  int n;
  cin >> n;
  vector<int> a(n + 2);
  a[n + 1] = INF;
  for (int i = 1; i <= n; i++) {
    cin >> a[i];
  }
  set<int> st = {INF};
  for (int i = 1; i < n; i++) {
    if (a[i] > a[i + 1]) {
      st.insert(i + 1);
    }
  }
  int q;
  cin >> q;
  while (q--) {
    int type;
    cin >> type;
    if (type == 1) {
      int i, x;
      cin >> i >> x;
      a[i] = x;
      if (a[i] > a[i + 1]) st.insert(i + 1);
      else st.erase(i + 1);
      if (a[i - 1] > a[i]) st.insert(i);
      else st.erase(i);
    } else {
      int l, r;
      cin >> l >> r;
      auto up = st.upper_bound(l);
      cout << (*up > r ? "YES" : "NO") << '\n';
    }
  }
  return 0;
}

Information

Submit By
Type
Submission
Problem
P1085 Sorted or !Sorted
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 17:02:49
Judged At
2024-10-03 13:24:31
Judged By
Score
100
Total Time
202ms
Peak Memory
6.125 MiB