/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 332.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Wrong Answer 2ms 504.0 KiB
#5 Accepted 1ms 540.0 KiB
#6 Wrong Answer 2ms 540.0 KiB

Code

// Created on: 2024-11-05 20:16
// Author: Safwan_Ibrahim

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

#define ll long long
#define endl '\n'

void solve()
{
    int n,k; cin >> n >> k;
    int a[n + 1];
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }
    int l = 0,r = 0;
    for (int i = 1; i <= n; i++) {
        if (a[i] != i) {
            l = i;
            break;
        }
    }
    for (int i = n; i >= 1; i--) {
        if (a[i] != i) {
            r = i;
            break;
        }
    }

    if(l) {
        if (r - l + 1 <= k) {
            cout << "YES\n";
            cout << l << " " << r << endl;
            return;
        } 
    }
    cout << "NO\n";
    
}

int32_t main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
    while(t--) solve();
    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 15:05:35
Judged At
2024-11-05 15:05:35
Judged By
Score
9
Total Time
2ms
Peak Memory
540.0 KiB