#include using namespace std; const vector dx = {0, 0, 1, -1}; const vector dy = {1, -1, 0, 0}; #define vec vector #define int long long #define double long double //cout< #define pq priority_queue #define all(V) begin(V),end(V) #define printpair(p) cout< template inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } #define nexper(Z) next_permutation(all(Z)) #define pb push_back #define rex(i, n) for (int i = 1; i <= (int)(n); i++) signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,k;cin>>n>>k; vec A(n); rep(i,n){ cin>>A[i]; } int ans=n; rep(i,n-1){ if(abs(A[i+1]-A[i])