/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 1ms 532.0 KiB
#3 Accepted 83ms 2.062 MiB
#4 Accepted 127ms 5.562 MiB
#5 Accepted 77ms 3.82 MiB
#6 Accepted 83ms 1.359 MiB
#7 Accepted 1ms 532.0 KiB
#8 Wrong Answer 2ms 532.0 KiB
#9 Wrong Answer 124ms 5.02 MiB
#10 Wrong Answer 175ms 7.062 MiB

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N = 2e5 + 10;
const ll MOD = 1e9 + 7;

void solve()
{
  int n;
  cin >> n;
  
  vector<int> v(n);
  for(int i = 0; i < n; i++) {
    cin >> v[i];
  }
  set<int>st;
  for(int i = 1; i < n - 1; i++) {
    if(v[i] < v[i - 1]) {
      st.insert(i);
    }
  }
  
  int q;
  cin >> q;
  while(q--) {
    int type, a, b;
    cin >> type >> a >> b;
    a--, b--;
    if(type == 1) {
      v[a] = b + 1;
      for(int i = max(1, a); i < min(n - 1, a + 1); i++) {
        if(v[i - 1] <= v[i] && v[i] <= v[i + 1]) {
          if(st.find(i) != st.end()) st.erase(i);
        }
        else st.insert(i);
      }
    }
    else {
      a++;
      b--;
      auto it = st.lower_bound(a);

      if(it != st.end() and *it <= b) {
        cout << "NO" << "\n";
      }
      else cout << "YES" << "\n";
    }
  }
}

int main()
{
  ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
  solve();
}

Information

Submit By
Type
Submission
Problem
P1085 Sorted or !Sorted
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-18 10:18:51
Judged At
2024-08-18 10:18:51
Judged By
Score
60
Total Time
175ms
Peak Memory
7.062 MiB