/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 340.0 KiB
#2 Accepted 1ms 320.0 KiB
#3 Accepted 1ms 560.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 500.0 KiB
#6 Accepted 1ms 340.0 KiB
#7 Accepted 1ms 324.0 KiB
#8 Accepted 1ms 532.0 KiB
#9 Accepted 1ms 536.0 KiB
#10 Accepted 1ms 444.0 KiB
#11 Accepted 1ms 532.0 KiB
#12 Accepted 1ms 396.0 KiB
#13 Accepted 1ms 484.0 KiB
#14 Accepted 1ms 552.0 KiB
#15 Accepted 1ms 532.0 KiB
#16 Accepted 1ms 524.0 KiB
#17 Accepted 1ms 536.0 KiB
#18 Accepted 1ms 484.0 KiB
#19 Accepted 1ms 328.0 KiB
#20 Accepted 1ms 484.0 KiB
#21 Accepted 2ms 532.0 KiB
#22 Accepted 16ms 1.562 MiB
#23 Accepted 16ms 1.762 MiB
#24 Accepted 26ms 2.27 MiB
#25 Accepted 31ms 3.02 MiB
#26 Accepted 12ms 1.84 MiB
#27 Accepted 3ms 788.0 KiB
#28 Accepted 17ms 1.766 MiB
#29 Accepted 20ms 2.098 MiB
#30 Accepted 22ms 3.02 MiB
#31 Accepted 25ms 2.52 MiB
#32 Accepted 26ms 3.215 MiB
#33 Accepted 19ms 2.812 MiB
#34 Accepted 21ms 2.184 MiB
#35 Accepted 23ms 3.52 MiB

Code

/**
 *  @author:   Binoy Barman
 *  @created:  2024-11-05 20:46:43
**/

#include<bits/stdc++.h>
using namespace std;
#define nl '\n'
#define all(v) v.begin(), v.end()
#define Too_Many_Jobs int tts, tc = 1; cin >> tts; hell: while(tts--)
#define Dark_Lord_Binoy ios_base::sync_with_stdio(false); cin.tie(NULL);

#ifdef LOCAL
#include "debug/whereisit.hpp"
#else
#define dbg(...) 42
#endif
#define int long long

int32_t main() {
Dark_Lord_Binoy
#ifdef LOCAL
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> b(a);
    sort(all(b));
    int l = 0, r = n - 1;
    while(l + 1 < n && a[l] == b[l]) l++;
    while(r - 1 >= 0 && a[r] == b[r]) r--;
    if(l >= r || r - l + 1 <= k) {
        cout << "YES" << nl;
        if(l <= r) cout << l + 1 << " " << r + 1 << nl;
        else cout << 1 << " " << 1 << nl;
    } else {
        cout << "NO" << nl;
    }

    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:53:49
Judged At
2024-11-05 14:53:49
Judged By
Score
100
Total Time
31ms
Peak Memory
3.52 MiB