/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 5ms 324.0 KiB
#3 Accepted 4ms 536.0 KiB
#4 Accepted 4ms 536.0 KiB
#5 Accepted 4ms 532.0 KiB
#6 Accepted 4ms 532.0 KiB
#7 Accepted 4ms 532.0 KiB
#8 Accepted 4ms 340.0 KiB
#9 Accepted 3ms 532.0 KiB
#10 Accepted 2ms 316.0 KiB
#11 Accepted 2ms 488.0 KiB
#12 Accepted 2ms 532.0 KiB
#13 Accepted 2ms 532.0 KiB
#14 Accepted 1ms 532.0 KiB
#15 Accepted 1ms 532.0 KiB
#16 Accepted 1ms 532.0 KiB
#17 Accepted 1ms 532.0 KiB
#18 Accepted 1ms 532.0 KiB
#19 Accepted 1ms 532.0 KiB
#20 Accepted 1ms 320.0 KiB
#21 Accepted 2ms 532.0 KiB
#22 Accepted 40ms 1.77 MiB
#23 Accepted 16ms 1.812 MiB
#24 Accepted 40ms 2.27 MiB
#25 Accepted 34ms 3.062 MiB
#26 Accepted 12ms 1.77 MiB
#27 Accepted 3ms 580.0 KiB
#28 Accepted 18ms 1.77 MiB
#29 Accepted 18ms 2.09 MiB
#30 Accepted 27ms 3.16 MiB
#31 Accepted 53ms 2.52 MiB
#32 Accepted 28ms 3.223 MiB
#33 Accepted 46ms 2.77 MiB
#34 Accepted 21ms 2.082 MiB
#35 Accepted 25ms 3.52 MiB

Code

#include <bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define arr_for(n) for (int i = 0; i < n; i++)
#define arrj_for(n) for (int j = 0; j < n; j++)
#define rev_arr_for(n) for (int i = n - 1; i >= 0; i--)
#define for_one(n) for (int i = 1; i <= n; i++)
#define pf push_front
#define ppf pop_front
#define pb push_back
#define ppb pop_back
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define newl "\n"
using namespace std;

void solve() {
    ll n, k;
    cin >> n >> k;

    vector<ll> v(n), sorted;
    for (auto &x : v)
        cin >> x;

    sorted = v;
    sort(all(sorted));

    int l = -1, r = -1;

    for (int i = 0; i < n; i++) {
        if (sorted[i] != v[i]) {
            if (l == -1)
                l = i + 1;
            r = i + 1;
        }
    }

    if (r - l + 1 > k) {
        cout << "NO" << newl;
    } else {
        cout << "YES" << newl;
        cout << l << " " << r << newl;
    }
}

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);

#ifdef ONPC
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif

    int testcase = 1;
    // cin >> testcase;

    while (testcase--) {
        solve();
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1120 Stairway to the Skyline
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-06 15:51:28
Judged At
2024-11-06 15:51:28
Judged By
Score
100
Total Time
53ms
Peak Memory
3.52 MiB