/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1ms 440.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 552.0 KiB
#6 Accepted 1ms 440.0 KiB
#7 Accepted 1ms 320.0 KiB
#8 Accepted 1ms 532.0 KiB
#9 Accepted 1ms 532.0 KiB
#10 Wrong Answer 1ms 532.0 KiB
#11 Accepted 1ms 532.0 KiB
#12 Accepted 2ms 536.0 KiB
#13 Accepted 2ms 532.0 KiB
#14 Accepted 3ms 340.0 KiB
#15 Accepted 4ms 532.0 KiB
#16 Accepted 4ms 536.0 KiB
#17 Accepted 4ms 532.0 KiB
#18 Accepted 4ms 532.0 KiB
#19 Accepted 5ms 480.0 KiB
#20 Accepted 4ms 532.0 KiB
#21 Accepted 7ms 532.0 KiB
#22 Accepted 28ms 3.137 MiB
#23 Accepted 17ms 2.703 MiB
#24 Accepted 19ms 3.098 MiB
#25 Accepted 39ms 6.004 MiB
#26 Accepted 36ms 2.184 MiB
#27 Accepted 4ms 788.0 KiB
#28 Accepted 29ms 3.316 MiB
#29 Accepted 25ms 3.43 MiB
#30 Accepted 50ms 3.898 MiB
#31 Accepted 30ms 5.629 MiB
#32 Accepted 27ms 4.133 MiB
#33 Accepted 22ms 3.797 MiB
#34 Accepted 51ms 3.613 MiB
#35 Accepted 55ms 6.578 MiB

Code

/* 
*   @author:- SYEDA SADIATUL JANNAT TUSHI
*   date & time :2024-11-05 21:48:46
*   BANGLADESH , SYLHET. 
*/

#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define endl '\n'
#define ll long long
#define ull unsigned long long
#define ld long double
#define PI acos(-1.0)
#define pb push_back
#define mp make_pair
#define vi vector<ll>
#define maxn 500005
#define mod 1000000007
#define inf 1000000007
#define pii pair<ll,ll>
#define vii vector<pii>
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define lcm(a,b) ((a*b)/__gcd(a,b));
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define setbits(x) __builtin_popcountll(x)
#define rep(i, a, b) for(ll i = (a); i < (b); i++)
#define per(i, a, b) for(int i = (a); i >= (b); i--)
#define rev_str(str) reverse(str.begin(),str.end());
#define print(v) for(auto e:v) cout<<e<<" "; cout<<endl;
#define sum(a) (accumulate((a).begin(), (a).end(), 0LL))
#define printp(v) for(auto e:v) cout<<e.first<<" "<<e.second<<endl;
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
bool sortByValue(const pair<int, int>& a, const pair<int, int>& b) {return a.second > b.second;}

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

   vi a(n),b,c;
   rep(i,0,n){
     cin>> a[i];
     b.pb(a[i]);
   }
   srt(b);
   ll cnt=0;

   rep(i,0,n){
    if(a[i]!=b[i]){
        c.pb(i+1);
        cnt++;
    }
   }

   if(cnt==0){
    cout<< "YES" <<endl;
    cout<< 1<<" "<<1<<endl;
   }
   else if(sz(c)<=k){
    cout<< "YES" <<endl;
    cout<< c[0]<<" "<< c.back()<< endl;
   }
   else{
    cout<< "NO" <<endl;
   }
}

int main() {
    fast
    ll t=1;//cin>>t;
    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 16:01:07
Judged At
2024-11-05 16:01:07
Judged By
Score
97
Total Time
55ms
Peak Memory
6.578 MiB