Submission #1009274

#TimeUsernameProblemLanguageResultExecution timeMemory
1009274nguyennhSimple game (IZhO17_game)C++14
22 / 100
1085 ms1352 KiB
#include<bits/stdc++.h>
#define el '\n'
using namespace std;

int32_t main (){
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  int n , m;
  cin >> n >> m;
  vector<int> h(n + 5);
  for (int i = 1 ; i <= n ; i++) cin >> h[i];
  while (m--){
    int type , pos , val;
    cin >> type >> pos;
    if (type == 1){
      cin >> val;
      h[pos] = val;
    }
    else {
      int cnt = 0;
      for (int i = 1 ; i < n ; i++){
        if (h[i] < pos && h[i + 1] > pos) cnt++;
        else if (h[i] > pos && h[i + 1] < pos) cnt++;
      }
      cout << cnt << el;
    }
  }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...