202012-3 带配额的文件系统

举报
辰chen 发表于 2022/06/14 23:32:58 2022/06/14
【摘要】 202012-3 带配额的文件系统 C++总结 本题链接:202012-3 带配额的文件系统 本博客给出本题截图: C++ #include <iostream> #...

202012-3 带配额的文件系统


本题链接202012-3 带配额的文件系统

本博客给出本题截图
在这里插入图片描述

C++

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <set>

using namespace std;

typedef long long LL;
const int N = 2000010;

int n;
struct Node
{
    string name;
    int id, type;  
    mutable LL ld, lr;
    mutable LL sd, sr;
    bool operator< (const Node& t) const
    {
        return name < t.name;
    }
};
set<Node> son[N];
int idx;
char str[N];
bool F;
int U;
LL SZ;

vector<string> get(char* str)
{
    vector<string> res(1, "root");
    for (int i = 0; str[i]; i ++ )
    {
        if (str[i] == '/') continue;
        string s;
        int j = i;
        while (str[j] && str[j] != '/') s += str[j ++ ];
        res.push_back(s);
        i = j - 1;
    }

    return res;
}

LL dfs_remove(vector<string>& t, int u, int p)
{
    string name = t[u];
    if (!son[p].count({name})) return -1;
    auto it = son[p].find({name});
    if (u == t.size() - 1)
    {
        if (it->type) t[u] = "#file";
        auto sz = it->sr;
        son[p].erase(it);
        return sz;
    }
    if (it->type) return -1;
    auto sz = dfs_remove(t, u + 1, it->id);
    if (sz >= 0)
    {
        it->sr -= sz;
        if (t[u + 1] == "#file") it->sd -= sz;
    }
    return sz;
}

bool dfs_create(vector<string>& t, int u, int p, LL sz)
{
    string name = t[u];
    if (u == t.size() - 1)
    {
        if (son[p].count({name}))
        {
            auto it = son[p].find({name});
            if (it->type == 0) return false;
            SZ = dfs_remove(t, 0, 0);
            Node cur{name, ++ idx, 1, 0, 0, 0, sz};
            son[p].insert(cur);
            return true;
        }
        else
        {
            Node cur{name, ++ idx, 1, 0, 0, 0, sz};
            son[p].insert(cur);
            return true;
        }
    }
    else
    {
        if (!son[p].count({name}))
        {
            if (U == -1) U = u;
            Node cur{name, ++ idx, 0, 0, 0, 0, 0};
            son[p].insert(cur);
        }

        auto it = son[p].find({name});
        if (it->type) return false;
        auto res = dfs_create(t, u + 1, it->id, sz);
        if (res)
        {
            it->sr += sz;
            if (u + 1 == t.size() - 1) it->sd += sz;

            if (it->lr && it->sr > it->lr) F = false;
            if (it->ld && it->sd > it->ld) F = false;
        }
        return res;
    }
}

bool create(char* str, LL sz)
{
    auto t = get(str);
    F = true, U = -1, SZ = -1;
    auto res = dfs_create(t, 0, 0, sz);

    auto ans = res && F;
    if (res && !F)
    {
        auto t = get(str);
        if (U != -1)
        {
            while (t.size() - 1 > U) t.pop_back();
        }
        dfs_remove(t, 0, 0);
        if (SZ != -1) create(str, SZ);
    }
    return ans;
}

bool update(char* str, LL d, LL r)
{
    auto t = get(str);
    int p = 0;
    for (int i = 0; i < t.size(); i ++ )
    {
        string& s = t[i];
        auto it = son[p].find({s});
        if (it == son[p].end()) return false;
        if (it->type) return false;
        if (i == t.size() - 1)
        {
            if (d && d < it->sd) return false;
            if (r && r < it->sr) return false;
            it->ld = d, it->lr = r;
        }
        p = it->id;
    }
    return true;
}

int main()
{
    scanf("%d", &n);
    char op[2];
    sprintf(str, "/tmp");
    create(str, 1);
    auto t = get(str);
    dfs_remove(t, 0, 0);
    while (n -- )
    {
        scanf("%s", op);
        bool res;
        if (*op == 'C')
        {
            LL sz;
            scanf("%s%lld", str, &sz);
            res = create(str, sz);
        }
        else if (*op == 'R')
        {
            scanf("%s", str);
            auto t = get(str);
            dfs_remove(t, 0, 0);
            res = true;
        }
        else
        {
            LL d, r;
            scanf("%s%lld%lld", str, &d, &r);
            res = update(str, d, r);
        }
        if (res) puts("Y");
        else puts("N");
    }
    return 0;
}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190

总结

csp史上最难的一道模拟题…
后续会补上每个函数的实现原理
大模拟 + dfs
细节点:类似图论问题的思考逻辑,先建立一个虚拟原点,然后进行拓展
注意:mutable 用法

文章来源: chen-ac.blog.csdn.net,作者:辰chen,版权归原作者所有,如需转载,请联系作者。

原文链接:chen-ac.blog.csdn.net/article/details/120142361

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。