hdu -2871(Memory Control) (线段树区间和并+vector的应用+二分)

6 篇文章 0 订阅
4 篇文章 0 订阅

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2871

思路:很容易想到是线段树。不做具体解释了(只说一下自己做题时,觉着好的地方)。

因为这个题需要记录每个数据块,对数据块进行处理,因为vector的插入和删除较方便,所以用vector数组。

要注意的是:在vector中查找模块时要用二分查找,否则会超时。

利用upper_bound,详见 https://blog.csdn.net/weixin_44757834/article/details/98179180

还要注意某些地方会超时

AC代码:

#include <cstdio>//重点是利用vector处理模块 ,细心
#include <algorithm>
#include <vector>
using namespace std;
const int N = 50000 + 10;
struct SegTree
{
	int left, right;
	int maxval, lval, rval;
	int cover;
	int mid()
	{
		return (left + right) / 2;
	}
	int dis()
	{
		return right - left + 1;
	}
	void init()
	{
    	maxval = lval = rval = cover ? 0 : dis();
	}
}st[N*4];
struct block
{
    int begin, end;
};
vector<block> v;
bool cmp(const block &a, const block &b)
{
    return a.begin < b.begin;
}
void build(int left, int right, int root)
{
	st[root].left = left;
	st[root].right = right;
	st[root].cover = 0;
	st[root].init();
	if (left == right)
		return;
	int mid = st[root].mid();
	build(left, mid, root*2);
	build(mid+1, right, root*2+1);
}
void update(int left, int right, int cov, int root)
{
	if (left <= st[root].left && st[root].right <= right)
	{
		st[root].cover = cov;
		st[root].init();
		return;
	}
	if (st[root].cover != -1)
	{
		st[root*2].cover = st[root*2+1].cover = st[root].cover;
		st[root*2].init();
		st[root*2+1].init();
		st[root].cover = -1;
	}
	int mid = st[root].mid();
	if (left <= mid)
		update(left, right, cov, root*2);
	if (right > mid)
		update(left, right, cov, root*2+1);
	st[root].maxval = max(st[root*2].rval + st[root*2+1].lval, max(st[root*2].maxval, st[root*2+1].maxval));
	st[root].lval = st[root*2].lval;
	st[root].rval = st[root*2+1].rval;
	if (st[root*2].lval == st[root*2].dis())
		st[root].lval += st[root*2+1].lval;
	if (st[root*2+1].rval == st[root*2+1].dis())
		st[root].rval += st[root*2].rval;
}
int query(int d, int root)
{
	if (st[root].maxval < d)
		return 0;
	if (st[root].left == st[root].right)
		return st[root].left;
	if (st[root].cover != -1)
	{
		st[root*2].cover = st[root*2+1].cover = st[root].cover;
		st[root*2].init();
		st[root*2+1].init();
		st[root].cover = -1;
	}
	if (st[root*2].maxval >= d)
		return query(d, root*2);
	else if (st[root*2].rval + st[root*2+1].lval >= d)
		return st[root*2].right - st[root*2].rval + 1;
	else return query(d, root*2+1);
}
int main()
{
	int n, m;
	while (scanf("%d%d", &n, &m) != EOF)
    {
        build(1, n, 1);
        v.clear();
        int x;
        char s[6];
        while (m--)
        {
            scanf("%s", s);
            if (s[0] == 'R')
            {
//              build(1, n, 1);    //TLE!!!
                update(1, n, 0, 1);
                v.clear();
                printf("Reset Now\n");
            }
            else if (s[0] == 'N')
            {
                scanf("%d", &x);
                int a = query(x, 1);
                if (a == 0)
                    printf("Reject New\n");
                else
                {
                    printf("New at %d\n", a);
                    update(a, a + x - 1, 1, 1);
                    block y;
                    y.begin = a, y.end = a + x - 1;
                    vector<block>::iterator it;
                    it = upper_bound(v.begin(), v.end(), y, cmp); 
                    v.insert(it, y);//插入操作
//                  v.push_back(y);           //TLE!!!
//                  sort(v.begin(), v.end(), cmp);
                }
            }
            else if (s[0] == 'F')
            {
                scanf("%d", &x);
                block y;
                y.begin = x, y.end = x;
                vector<block>::iterator it;
                it = upper_bound(v.begin(), v.end(), y, cmp); 
                int tmp = it - v.begin() - 1;
                if (tmp == - 1 || v[tmp].end < x)
                    printf("Reject Free\n");
                else
                {
                    printf("Free from %d to %d\n", v[tmp].begin, v[tmp].end);
                    update(v[tmp].begin, v[tmp].end, 0, 1);
                    v.erase(v.begin() + tmp);
                }
            }
            else
            {
                scanf("%d", &x);
                if (x > v.size())
                    printf("Reject Get\n");
                else printf("Get at %d\n", v[x-1].begin);
            }
        }
        printf("\n");
    }
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值