B - Memory Manager

1.题目:

B - Memory Manager
Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u
Submit
 
Status
Description
There is little time left before the release of the first national operating system BerlOS. Some of its components are not finished yet — the memory manager is among them. According to the developers' plan, in the first release the memory manager will be very simple and rectilinear. It will support three operations:

alloc n — to allocate n bytes of the memory and return the allocated block's identifier x;
erase x — to erase the block with the identifier x;
defragment — to defragment the free memory, bringing all the blocks as close to the beginning of the memory as possible and preserving their respective order;
The memory model in this case is very simple. It is a sequence of m bytes, numbered for convenience from the first to the m-th.

The first operation alloc n takes as the only parameter the size of the memory block that is to be allocated. While processing this operation, a free block of n successive bytes is being allocated in the memory. If the amount of such blocks is more than one, the block closest to the beginning of the memory (i.e. to the first byte) is prefered. All these bytes are marked as not free, and the memory manager returns a 32-bit integer numerical token that is the identifier of this block. If it is impossible to allocate a free block of this size, the function returns NULL.

The second operation erase x takes as its parameter the identifier of some block. This operation frees the system memory, marking the bytes of this block as free for further use. In the case when this identifier does not point to the previously allocated block, which has not been erased yet, the function returns ILLEGAL_ERASE_ARGUMENT.

The last operation defragment does not have any arguments and simply brings the occupied memory sections closer to the beginning of the memory without changing their respective order.

In the current implementation you are to use successive integers, starting with 1, as identifiers. Each successful alloc operation procession should return following number. Unsuccessful alloc operations do not affect numeration.

You are to write the implementation of the memory manager. You should output the returned value for each alloc command. You should also output ILLEGAL_ERASE_ARGUMENT for all the failed erase commands.

Input
The first line of the input data contains two positive integers t and m (1 ≤ t ≤ 100;1 ≤ m ≤ 100), where t — the amount of operations given to the memory manager for processing, and m — the available memory size in bytes. Then there follow t lines where the operations themselves are given. The first operation is alloc n (1 ≤ n ≤ 100), where n is an integer. The second one is erase x, where x is an arbitrary 32-bit integer numerical token. The third operation is defragment.

Output
Output the sequence of lines. Each line should contain either the result of alloc operation procession , or ILLEGAL_ERASE_ARGUMENT as a result of failed erase operation procession. Output lines should go in the same order in which the operations are processed. Successful procession of alloc operation should return integers, starting with 1, as the identifiers of the allocated blocks.

Sample Input
Input
6 10
alloc 5
alloc 3
erase 1
alloc 6
defragment
alloc 6
Output
1
2
NULL
3


 

3.题意:

给定三种操作,

alloc

 

这种操作是将后边长度的内容写进内存,若果写不进去,返回null,若果有多个快可以存放,则从头放;

2.

erase

 

删除这一块的内存

3.

defragment

 

将所有写入的内容从头放置,

3.代码在第13个样例错了,寻答案

#include<stdio.h>
#include<string.h>
char aa[15];
int c[110];
struct node
{
    int type;
    int start,end;
    int num;
    int visit;
} a[105];
int find(char str[])
{
    if(strcmp("alloc",str)==0)
        return 1;
    else if(strcmp("erase",str)==0)
        return 2;
    else if(strcmp("defragment",str)==0)
        return 3;
}
int main()
{
    int t,m,test,ans=0,b,k=1,flag,ans1,flag1;//ans记录可以填充的手坐标,ans记录最中输出
    scanf("%d%d",&t,&m);
    for(int i=1; i<=m; i++)
    {
        c[i]=0;
    }
    while(t--)
    {
        flag=0;
        flag1=0;
        scanf("%s%d",aa,&b);
        test=find(aa);
        if(test==1)
        {
            for(int i=1; i<=m; i++)
            {
                flag1=0;
                if(c[i]==0&&c[i+b-1]==0&&(i+b-1)<=m)
                {
                    for(int l=i; l<=i+b-1; l++)
                    {
                        if(c[l]==1)
                            flag1=1;
                    }
                    if(flag1==1)
                    {
                        continue;
                    }
                    else
                    {
                        for(int j=i; j<=i+b-1; j++)
                        {
                            c[j]=1;
                        }
                        a[k].start=i;
                        a[k].end=i+b-1;
                        a[k].visit=1;
                        //printf("&&%d %d\n",a[k].start,a[k].end);
                        k++;
                        ans++;
                        flag=1;
                        break;
                    }
                }
            }
        }
        if(test==2)
        {
            if((b>=1)&&(b<=ans)&&a[b].visit==1)
            {
                for(int i=a[b].start; i<=a[b].end;i++)
                {
                    c[i]=0;
                }
                flag=1;
                a[b].visit=0;
            }
            else flag=0;
        }
        ans1=0;
        if(test==3)
        {
            for(int i=1; i<=m; i++)
            {
                if(c[i]==1)
                {
                    ans1++;
                    c[i]=0;
                }
            }
            for(int i=1; i<=ans1; i++)
            {
                c[i]=1;
            }
        }
        if(test==1)
        {
            if(flag==1)
                printf("%d\n",ans);
            else
                printf("NULL\n");
        }
        else if(test==2)
        {
            if(flag==0)
                printf("ILLEGAL_ERASE_ARGUMENT\n");
        }
    }
    return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值