/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 324.0 KiB
#3 Accepted 1ms 532.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 532.0 KiB
#6 Accepted 1ms 520.0 KiB
#7 Accepted 2ms 532.0 KiB
#8 Accepted 2ms 484.0 KiB
#9 Accepted 1ms 324.0 KiB
#10 Accepted 1ms 324.0 KiB
#11 Accepted 2ms 540.0 KiB
#12 Accepted 1ms 324.0 KiB
#13 Accepted 1ms 324.0 KiB
#14 Accepted 1ms 324.0 KiB
#15 Accepted 1ms 532.0 KiB
#16 Accepted 1ms 324.0 KiB
#17 Accepted 1ms 508.0 KiB
#18 Accepted 1ms 320.0 KiB
#19 Accepted 1ms 572.0 KiB
#20 Accepted 1ms 496.0 KiB
#21 Accepted 2ms 496.0 KiB
#22 Accepted 16ms 1.16 MiB
#23 Accepted 16ms 1.258 MiB
#24 Accepted 17ms 1.43 MiB
#25 Accepted 34ms 1.77 MiB
#26 Accepted 11ms 1.07 MiB
#27 Accepted 3ms 576.0 KiB
#28 Accepted 19ms 1.066 MiB
#29 Accepted 19ms 1.27 MiB
#30 Accepted 23ms 1.77 MiB
#31 Accepted 27ms 1.59 MiB
#32 Accepted 26ms 1.961 MiB
#33 Accepted 20ms 1.695 MiB
#34 Accepted 23ms 1.316 MiB
#35 Accepted 24ms 2.066 MiB

Code

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

#define FAST ios_base::sync_with_stdio(false);cin.tie(NULL);
using ll = long long;

int main() {
  FAST;

  int n, k, i, l, r, req;
  cin >> n >> k;

  vector<int> a(n), b(n);
  for (i = 0; i < n; ++i) cin >> a[i];
  b = a;
  sort(b.begin(), b.end());

  for (l = 0; l < n; ++l) {
    if (a[l] != b[l]) break;
  }
  for (r = n-1; r >= 0; --r) {
    if (a[r] != b[r]) break;
  }

  req = 0;
  if (l <= r) req = r-l+1;

  if (req <= k) {
    cout << "YES" << "\n";
    cout << l+1 << " " << r+1 << "\n";
  } else {
    cout << "NO" << "\n";
  }

  return 0;
}

Information

Submit By
Type
Submission
Problem
P1120 Stairway to the Skyline
Contest
Brain Booster #7
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 14:48:57
Judged At
2024-11-11 02:32:27
Judged By
Score
100
Total Time
34ms
Peak Memory
2.066 MiB