CF1132G.Greedy Subsequences
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
For some array c , let's denote a greedy subsequence as a sequence of indices p1 , p2 , ..., pl such that 1≤p1<p2<⋯<pl≤∣c∣ , and for each i∈[1,l−1] , pi+1 is the minimum number such that pi+1>pi and c[pi+1]>c[pi] .
You are given an array a1,a2,…,an . For each its subsegment of length k , calculate the length of its longest greedy subsequence.
输入格式
The first line contains two integers n and k ( 1≤k≤n≤106 ) — the length of array a and the length of subsegments.
The second line contains n integers a1,a2,…,an ( 1≤ai≤n ) — array a .
输出格式
Print n−k+1 integers — the maximum lengths of greedy subsequences of each subsegment having length k . The first number should correspond to subsegment a[1..k] , the second — to subsegment a[2..k+1] , and so on.
输入输出样例
输入#1
6 4 1 5 2 5 3 6
输出#1
2 2 3
输入#2
7 6 4 5 2 5 3 6 6
输出#2
3 3
说明/提示
In the first example:
- [1,5,2,5] — the longest greedy subsequences are 1,2 ( [c1,c2]=[1,5] ) or 3,4 ( [c3,c4]=[2,5] ).
- [5,2,5,3] — the sequence is 2,3 ( [c2,c3]=[2,5] ).
- [2,5,3,6] — the sequence is 1,2,4 ( [c1,c2,c4]=[2,5,6] ).
In the second example:
- [4,5,2,5,3,6] — the longest greedy subsequences are 1,2,6 ( [c1,c2,c6]=[4,5,6] ) or 3,4,6 ( [c3,c4,c6]=[2,5,6] ).
- [5,2,5,3,6,6] — the subsequence is 2,3,5 ( [c2,c3,c5]=[2,5,6] ).