/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1ms 532.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 320.0 KiB
#6 Accepted 1ms 324.0 KiB
#7 Accepted 1ms 532.0 KiB
#8 Accepted 1ms 364.0 KiB
#9 Accepted 1ms 412.0 KiB
#10 Accepted 1ms 480.0 KiB
#11 Accepted 1ms 488.0 KiB
#12 Accepted 1ms 352.0 KiB
#13 Accepted 1ms 532.0 KiB
#14 Accepted 1ms 532.0 KiB
#15 Accepted 1ms 532.0 KiB
#16 Accepted 4ms 356.0 KiB
#17 Accepted 4ms 532.0 KiB
#18 Accepted 4ms 532.0 KiB
#19 Accepted 4ms 532.0 KiB
#20 Accepted 4ms 532.0 KiB
#21 Accepted 7ms 532.0 KiB
#22 Accepted 33ms 1.02 MiB
#23 Accepted 18ms 1.02 MiB
#24 Accepted 19ms 1.27 MiB
#25 Accepted 36ms 1.77 MiB
#26 Accepted 11ms 1.02 MiB
#27 Accepted 3ms 532.0 KiB
#28 Accepted 43ms 1.02 MiB
#29 Accepted 45ms 1.27 MiB
#30 Accepted 48ms 1.77 MiB
#31 Accepted 52ms 1.52 MiB
#32 Accepted 24ms 1.77 MiB
#33 Accepted 18ms 1.566 MiB
#34 Accepted 43ms 1.27 MiB
#35 Accepted 27ms 2.02 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-05 14:48:57
Judged By
Score
100
Total Time
52ms
Peak Memory
2.02 MiB