/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 2ms 492.0 KiB
#5 Accepted 1ms 540.0 KiB
#6 Accepted 2ms 384.0 KiB
#7 Accepted 1ms 332.0 KiB
#8 Accepted 1ms 540.0 KiB
#9 Accepted 1ms 328.0 KiB
#10 Wrong Answer 1ms 772.0 KiB
#11 Accepted 1ms 360.0 KiB
#12 Accepted 1ms 540.0 KiB
#13 Accepted 2ms 508.0 KiB
#14 Accepted 1ms 516.0 KiB
#15 Accepted 1ms 588.0 KiB
#16 Accepted 1ms 516.0 KiB
#17 Accepted 2ms 512.0 KiB
#18 Accepted 1ms 540.0 KiB
#19 Accepted 1ms 772.0 KiB
#20 Accepted 1ms 772.0 KiB
#21 Accepted 2ms 584.0 KiB
#22 Accepted 17ms 3.18 MiB
#23 Accepted 17ms 2.852 MiB
#24 Accepted 19ms 2.938 MiB
#25 Accepted 36ms 7.754 MiB
#26 Accepted 13ms 2.141 MiB
#27 Accepted 3ms 844.0 KiB
#28 Accepted 20ms 3.43 MiB
#29 Accepted 23ms 3.508 MiB
#30 Accepted 24ms 5.141 MiB
#31 Accepted 29ms 7.672 MiB
#32 Accepted 28ms 4.957 MiB
#33 Accepted 22ms 4.785 MiB
#34 Accepted 24ms 3.637 MiB
#35 Accepted 28ms 7.883 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);

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

   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 15:49:11
Judged At
2024-11-05 15:49:11
Judged By
Score
97
Total Time
36ms
Peak Memory
7.883 MiB