문제풀이: 슬라이딩 창【단조로운 대기열】
#include
#include
using namespace std;
#define ll long long
#define re register
#define gc getchar()
inline int read()
{
re int x(0),f(1);re char ch(gc);
while(ch<'0'||ch>'9') {if(ch=='-')f=-1; ch=gc;}
while(ch>='0'&&ch<='9') x=(x*10)+(ch^48),ch=gc;
return x*f;
}
const int N=1e6+5;
int n,k,a[N],q[N],num[N],f1[N],f2[N],head,tail;
void get_max()
{
head=1,tail=0;
for(int i=1;i<=n;++i)
{
while(num[head]<i-k+1&&head<=tail) ++head;
while(a[i]<=q[tail]&&head<=tail) --tail;
num[++tail]=i,q[tail]=a[i];
f1[i]=q[head];
}
for(int i=k;i<=n;++i)
cout<<f1[i]<<" ";
cout<<endl;
}
void get_min()
{
head=0,tail=1;
for(int i=1;i<=n;++i)
{
while(num[head]<i-k+1&&head<=tail) ++head;
while(a[i]>=q[tail]&&head<=tail) --tail;
num[++tail]=i;q[tail]=a[i];
f2[i]=q[head];
}
for(int i=k;i<=n;++i)
cout<<f2[i]<<" ";
}
int main()
{
n=read(),k=read();
for(int i=1;i<=n;++i)
a[i]=read();
get_max();
get_min();
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
49일차 - 2022.04.20Baekjoon에서 문제풀이 1) 문제 : 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제/ 첫째 줄에 N(1 ≤ N ≤ 100)이 주어진다. 첫째 줄부터 N번째 줄까지 차례대로 별...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.