• cf898d Alarm Clock


    区间上有 (n) 个点,问你为达到目的:长度为 (m) 的区间内点的个数都 $ < k$需要去掉多少个点。
    贪心。每个区间我们总是去掉最后的,也就是说除非万不得已我们是不会去掉点的。
    队列模拟一下。

    #include <algorithm>
    #include <iostream>
    #include <cstring>
    #include <cstdio>
    #include <queue>
    using namespace std;
    int n, m, k, a[200005], cnt;
    queue<int> q;
    int main(){
    	cin>>n>>m>>k;
    	for(int i=1; i<=n; i++)	scanf("%d", &a[i]);
    	sort(a+1, a+n+1);
    	for(int i=1; i<=n; i++){
    		while(!q.empty() && a[i]-q.front()>=m)	q.pop();
    		if(q.size()>=k-1)	cnt++;
    		else	q.push(a[i]);
    	}
    	cout<<cnt<<endl;
    	return 0;
    }
    
  • 相关阅读:
    join
    PS1-4
    tftp + bras
    awk调用shell
    curl
    ssh
    查看cp进度,使用watch
    tftp
    scp 链接文件的问题 + tar
    mysql必知必会(三、使用mysql)
  • 原文地址:https://www.cnblogs.com/poorpool/p/8322103.html
Copyright © 2020-2023  润新知