第26次csp认证第三题:角色授权

题目太长就只放连接了:计算机软件能力认证考试系统

思路分析:此题是大模拟,我用到了pair,set和map三种数据结构。要熟练运用其中的empty(),count(),insert(),clear()等函数。

读懂题后,发现不用在用户组中维护用户列表,只需要在每个用户中添加用户组即可。而且添加角色关联的时候可以向用户或用户组数据结构的role集合中添加。最后判断某个用户,只需要遍历用户中的role集合和其所属的用户组集合中不同用户组的role集合即可。总之就是理清题意,最优化解决方案。

得分情况:最初没有考虑到“每次用户查询权限要清空之前的用户所属组”细节,得分30

修改后超时,得分80

最后加上一句话    ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);优化输入时间,得分100

 代码:

#include<bits/stdc++.h>
using namespace std;



struct group
{
    public:
    set<string> group_role;
};

struct role
{
    public:
    set<string> options;
    set<string> resource;
    set<string> r_name;
};
map<string,role> map_role;
map<string,group> map_group;
struct user
{
    public:
    set<string> user_group;
    set<string> user_role;

    bool check_empower(string o,string r,string n){
        set<string>::iterator it = user_role.begin();
        for(;it!=user_role.end();it++){
            if(map_role[*it].options.count("*")||map_role[*it].options.count(o))
            if(map_role[*it].resource.count("*")||map_role[*it].resource.count(r))
            if(map_role[*it].r_name.count(n)||map_role[*it].r_name.empty())
            return true;
        }

        set<string>::iterator it2 = user_group.begin();
        for(;it2!=user_group.end();it2++){
            it =map_group[*it2].group_role.begin();
        for(;it!=map_group[*it2].group_role.end();it++){
            if(map_role[*it].options.count("*")||map_role[*it].options.count(o))
            if(map_role[*it].resource.count("*")||map_role[*it].resource.count(r))
            if(map_role[*it].r_name.count(n)||map_role[*it].r_name.empty())
            return true;
        }
        }
        return false;
    }
};
map<string,user> map_user;


int main(){
    ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);//80-100
    int n,m,q;
    cin>>n>>m>>q;
    while (n--)
    {
     string rolename;
    int nv,no,nn;
    cin>>rolename;
    role temprole;
    string str;
    cin>>nv;
    for(int i=0;i<nv;i++){
        cin>>str;
        temprole.options.insert(str);
    }
    cin>>no;
    for(int i=0;i<no;i++){
        cin>>str;
        temprole.resource.insert(str);
    }
    cin>>nn;
    for(int i=0;i<nn;i++){
        cin>>str;
        temprole.r_name.insert(str);
    }
    map_role.insert(pair<string,role>(rolename,temprole));
    }
    
    while(m--){
        string role;
        string str;
        string ugname;
        int ns;
        cin>>role>>ns;
        for(int i=0;i<2*ns;i+=2){
            cin>>str;
            cin>>ugname;
            if(str=="u"){
                if(map_user.find(ugname)!=map_user.end()){
                    map_user[ugname].user_role.insert(role);
                }
                else{
                user tempuser;
                tempuser.user_role.insert(role);
                map_user.insert(pair<string,user>(ugname,tempuser));
                }
            }
            else{
             if(map_group.find(ugname)!=map_group.end()){
                    map_group[ugname].group_role.insert(role);
                }
                else{
                group tempgroup;
                tempgroup.group_role.insert(role);
                map_group.insert(pair<string,group>(ugname,tempgroup));
                }
            }
    }
    }
    while(q--){
        string uname;
        int ng;
        string o,r,n;
        cin>>uname;
        cin>>ng;
        if(map_user.find(uname)==map_user.end()){
            user u;
            map_user.insert(pair<string,user>(uname,u));
        }
        map_user[uname].user_group.clear();//30-80
        while(ng--){
            string group;
            cin>>group;
            map_user[uname].user_group.insert(group);
        }
        cin>>o>>r>>n;
        if(map_user[uname].check_empower(o,r,n)) cout<<1<<endl;
        else cout<<0<<endl;
    }
   
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值