/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 44ms 18.043 MiB
#2 Accepted 39ms 17.996 MiB
#3 Accepted 39ms 17.996 MiB
#4 Accepted 40ms 17.996 MiB
#5 Accepted 40ms 17.973 MiB
#6 Accepted 39ms 17.809 MiB
#7 Accepted 41ms 17.887 MiB
#8 Accepted 41ms 17.996 MiB
#9 Accepted 41ms 17.859 MiB
#10 Accepted 60ms 17.785 MiB
#11 Accepted 39ms 17.977 MiB
#12 Accepted 40ms 17.883 MiB
#13 Accepted 40ms 17.812 MiB
#14 Accepted 40ms 17.883 MiB
#15 Accepted 40ms 17.824 MiB
#16 Accepted 39ms 17.816 MiB
#17 Accepted 40ms 17.996 MiB
#18 Accepted 39ms 17.848 MiB
#19 Accepted 40ms 17.992 MiB
#20 Accepted 39ms 17.789 MiB
#21 Accepted 52ms 20.719 MiB
#22 Accepted 83ms 31.957 MiB
#23 Accepted 86ms 34.605 MiB
#24 Accepted 95ms 38.121 MiB
#25 Accepted 149ms 48.602 MiB
#26 Accepted 96ms 32.828 MiB
#27 Accepted 52ms 19.793 MiB
#28 Accepted 88ms 35.352 MiB
#29 Accepted 91ms 35.613 MiB
#30 Accepted 127ms 48.961 MiB
#31 Accepted 107ms 41.637 MiB
#32 Accepted 129ms 48.871 MiB
#33 Accepted 95ms 42.809 MiB
#34 Accepted 98ms 38.035 MiB
#35 Accepted 105ms 42.926 MiB

Code

#!/usr/bin/env python3
import sys
import math
import random
import os
from io import BytesIO, IOBase

FAST_IO_BUFSIZE = 8192


class FastIO(IOBase):
    newlines = 0

    def __init__(self, file):
        self._file = file
        self._fd = file.fileno()
        self.buffer = BytesIO()
        self.writable = "x" in file.mode or "r" not in file.mode
        self.write = self.buffer.write if self.writable else None

    def read(self):
        while True:
            b = os.read(self._fd, max(os.fstat(self._fd).st_size, FAST_IO_BUFSIZE))
            if not b:
                break
            ptr = self.buffer.tell()
            self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
        self.newlines = 0
        return self.buffer.read()

    def readline(self):
        while self.newlines == 0:
            b = os.read(self._fd, max(os.fstat(self._fd).st_size, FAST_IO_BUFSIZE))
            self.newlines = b.count(b"\n") + (not b)
            ptr = self.buffer.tell()
            self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
        self.newlines -= 1
        return self.buffer.readline()

    def flush(self):
        if self.writable:
            os.write(self._fd, self.buffer.getvalue())
            self.buffer.truncate(0), self.buffer.seek(0)


class IOWrapper(IOBase):
    def __init__(self, file):
        self.buffer = FastIO(file)
        self.flush = self.buffer.flush
        self.writable = self.buffer.writable
        self.write = lambda s: self.buffer.write(s.encode("ascii"))
        self.read = lambda: self.buffer.read().decode("ascii")
        self.readline = lambda: self.buffer.readline().decode("ascii")


sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip("\r\n")
import copy

class solution:
    lim = 2 * 10**6 + 5

    def __init__(self) -> None:
        pass

    def solve(self) -> None:
        self.solve_case()

    def solve_case(self) -> None:
        n, k = map(int, input().split())
        ar = list(map(int, input().split()))
        br = copy.deepcopy(ar)
        br.sort()
        cr = []
        for i in range(n):
            cr.append(1 if ar[i] == br[i] else 0)
        first_0 = -1
        last_0 = -1
        for i in range(n):
            if cr[i] == 0:
                first_0 = i
                break
        for i in range(n):
            if cr[i] == 0:
                last_0 = i
        if first_0 == -1:
            print("YES")
            return
        if last_0 - first_0 + 1 > k:
            print("NO")
            return
        print("YES")
        print(first_0 + 1, last_0 + 1)
                        
        
if __name__ == "__main__":
    solution().solve()

Information

Submit By
Type
Submission
Problem
P1120 Stairway to the Skyline
Contest
Lockout contest round-1 ( Araf al jami vs Kamonasish Roy)
Language
PyPy 3 (Python 3.9.18 PyPy 7.3.15)
Submit At
2024-10-30 15:22:39
Judged At
2024-10-30 15:22:39
Judged By
Score
100
Total Time
149ms
Peak Memory
48.961 MiB