/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 536.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1ms 536.0 KiB
#4 Accepted 2ms 764.0 KiB
#5 Accepted 1ms 532.0 KiB
#6 Accepted 1ms 424.0 KiB
#7 Accepted 1ms 484.0 KiB
#8 Accepted 1ms 488.0 KiB
#9 Accepted 1ms 580.0 KiB
#10 Accepted 1ms 520.0 KiB
#11 Accepted 1ms 536.0 KiB
#12 Accepted 1ms 320.0 KiB
#13 Accepted 1ms 344.0 KiB
#14 Accepted 1ms 576.0 KiB
#15 Accepted 1ms 576.0 KiB
#16 Accepted 1ms 324.0 KiB
#17 Accepted 1ms 580.0 KiB
#18 Accepted 1ms 320.0 KiB
#19 Accepted 1ms 532.0 KiB
#20 Accepted 1ms 452.0 KiB
#21 Accepted 3ms 836.0 KiB
#22 Accepted 45ms 4.676 MiB
#23 Accepted 48ms 5.418 MiB
#24 Accepted 52ms 6.695 MiB
#25 Accepted 123ms 9.805 MiB
#26 Accepted 32ms 5.039 MiB
#27 Accepted 6ms 1.516 MiB
#28 Accepted 57ms 5.527 MiB
#29 Accepted 62ms 5.859 MiB
#30 Accepted 71ms 9.926 MiB
#31 Accepted 83ms 7.832 MiB
#32 Accepted 76ms 10.465 MiB
#33 Accepted 58ms 8.551 MiB
#34 Accepted 69ms 6.543 MiB
#35 Accepted 77ms 11.234 MiB

Code

// #pragma GCC optimize("O3,unroll-loops,Ofast")
// #pragma GCC target("avx2")
#include<bits/stdc++.h>
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
// using namespace __gnu_pbds;
#define int long long
#define endl '\n'

using namespace std;
using pii = pair<int, int>;
using tup = tuple<int, int, int>;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
// template <class T> using ordered_set = tree<T, null_type,
//                          less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>;

const int inf = 1e18;
const int mod = 1000000007;
const double eps = 1e-9;
const int N = 500005;

void preprocess() {}

int pre[N], suf[N], a[N];

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

    multiset<int> st;
    for(int i=1; i<=n; i++) cin >> a[i], st.insert(a[i]);

    int i = 1, j = n;
    while(i < j and a[i] == *st.begin()) i++, st.erase(st.begin());
    while(j > i and a[j] == *st.rbegin()) j--, st.erase(prev(st.end()));

    if(j-i+1 <= k) {
        cout << "YES" << endl;
        cout << i << ' ' << j << endl;
        return;
    }

    cout << "NO" << endl;
}   

int32_t main() {
    cin.tie(NULL)->sync_with_stdio(false);
    cout.precision(10);

    preprocess();

    int T = 1;
    // cin >> T;

    for (int i = 1; i <= T; i++) {  
        solve(i);
    }

    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 14:55:21
Judged At
2024-11-11 02:32:06
Judged By
Score
100
Total Time
123ms
Peak Memory
11.234 MiB