/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 512.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Wrong Answer 2ms 400.0 KiB
#5 Accepted 2ms 492.0 KiB
#6 Wrong Answer 1ms 540.0 KiB

Code

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

/*#ifndef ONLINE_JUDGE
#include "DEBUG.h"
#define bug(...)           __f (#__VA_ARGS__, __VA_ARGS__)
#endif
*/
#define first_in_out       ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define ll                 long long int
#define double             long double
#define min_heap           priority_queue <ll, vector<ll>, greater<ll>>
#define print(a)           for(auto x : a) cout << x << " ";
#define printpair(a)       for(auto x : a) cout << x.first << " " << x.second<<"\n";



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

	int a[n], b[n];

	for (int i = 0; i < n; i++)
	{
		cin >> a[i];
		b[i] = a[i];
	}

	sort(b, b + n);

	int i = 0, j = n - 1;
	int l = -1, r = 1e9;
	while (i < j)
	{
		if (a[i] == b[i])
			i++;
		else if (l == -1)
			l = i;

		if (a[j] == b[j])
			j--;
		else if (r == 1e9)
			r = j;

		if (l != -1 and r != -1)
			break;
	}




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


int main()
{
	first_in_out
	//clock_t z = clock();

	int t = 1;
	//cin >> t;

	while (t--)
		solve();

	//cerr << "Run Time : " << ((double)(clock() - z) / CLOCKS_PER_SEC);
}

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:15:59
Judged At
2024-11-05 15:15:59
Judged By
Score
9
Total Time
2ms
Peak Memory
540.0 KiB