/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1ms 320.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 532.0 KiB
#6 Accepted 1ms 532.0 KiB
#7 Accepted 1ms 532.0 KiB
#8 Accepted 1ms 452.0 KiB
#9 Accepted 1ms 532.0 KiB
#10 Accepted 1ms 536.0 KiB
#11 Accepted 1ms 532.0 KiB
#12 Accepted 1ms 532.0 KiB
#13 Accepted 1ms 360.0 KiB
#14 Accepted 1ms 532.0 KiB
#15 Accepted 1ms 488.0 KiB
#16 Accepted 1ms 532.0 KiB
#17 Accepted 1ms 444.0 KiB
#18 Accepted 1ms 320.0 KiB
#19 Accepted 1ms 532.0 KiB
#20 Accepted 1ms 480.0 KiB
#21 Accepted 2ms 612.0 KiB
#22 Accepted 16ms 1.02 MiB
#23 Accepted 16ms 1.02 MiB
#24 Accepted 17ms 1.246 MiB
#25 Accepted 57ms 1.715 MiB
#26 Accepted 30ms 1.121 MiB
#27 Accepted 5ms 532.0 KiB
#28 Accepted 43ms 1.156 MiB
#29 Accepted 39ms 1.27 MiB
#30 Accepted 21ms 1.77 MiB
#31 Accepted 27ms 1.52 MiB
#32 Accepted 50ms 1.816 MiB
#33 Accepted 41ms 1.625 MiB
#34 Accepted 34ms 1.246 MiB
#35 Accepted 23ms 2.02 MiB

Code

#include <bits/stdc++.h>
#define endl '\n'
#define F first
#define S second
using namespace std;
#define ll long long
#define pb push_back
#define mod 1000000007
// #define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}

const int N = 2e5 + 10;

void solve()
{
    int n, m;
    cin >> n >> m;
    vector<int> v(n);
    for (int i = 0; i < n; i++)
    {
        cin >> v[i];
    }
    vector<int>temp = v;
    sort(all(v));
    int l = 0, r = n - 1;
    for(int i = 0; i < n; i++){
        if(v[i] != temp[i]){
            l = i + 1;
            break;
        }
    }
    for(int i = n - 1; i >= 0; i--){
        if(v[i] != temp[i]){
            r = i + 1;
            break;
        }
    }

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

}

int32_t main()
{
    Abid_52;
    int t = 1;
    // cin >> t;
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

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 15:14:51
Judged At
2024-11-05 15:14:51
Judged By
Score
100
Total Time
57ms
Peak Memory
2.02 MiB