【模拟】Another Easy Problem

Another Easy Problem

http://acm.hdu.edu.cn/showproblem.php?pid=2418



Problem Description
Nowadays, many universities no longer force students to follow a fixed curriculum; instead they allow students to choose the courses on an individual basis. However, new programs need to be written to satisfy such needs. Your job is to write such a program.
In our system, the following objects exist: Time Period, Course and Student. The relationships between the three objects are as follows:
A course has a capacity, and is associated with multiple time periods; a student can register for multiple courses in the system (resulting in a possibly conflicting schedule).
To resolve possible conflicts with the schedules as well as to ensure that the number of students registered for each course does not exceed its capacity, the system will use the logic described below to determine the result: 
Process courses, in the order they appear in the input.
For each course: Check each student's request in the order it is received, and reject the request if a) accepting the request will result in a conflict in the student's schedule, or b) if no more students could be accepted by this class, or c) the student has already enrolled in this class; otherwise, the request is accepted.

Can you solve this easy problem?
 

Input
There are multiple test cases in the input file. 
Each test case starts with three integers, N, M and R (1 <= N <= 20, 1 <= M <= 20, 0 <= R <= N * M), the number of students, the number of courses, and the number of requests, respectively.
Each of the following N lines contains one string, the ID of the student. The ID will contain no characters other than '0'...'9' The next part of each test case consists of M lines, each of which contains three integers, I, C, T, (C <= 100, T <= 30), the ID of the course, the capacity, and the number of time periods used by the course respectively; T more integers follows, representing the unique identifiers of the time periods. The description for the requests comes next, each line in the format of [Student ID](Space character)[Course ID], in the order as the requests are received. It is guaranteed that the requests are always valid, i.e., both the student ID and the course ID could be found in the description given above.
Two consecutive test cases are separated by a blank line. Input ends with End-of-File.
 

Output
For each test case, print the total number of requests accepted by the system, in the format as indicated in the sample output. 
 

Sample Input
  
  
2 2 4 0 1 101 1 2 3 4 102 2 1 5 0 101 1 102 1 101 0 102 1 1 0 4 5 1 1 5
 

Sample Output
  
  
Case 1: 3 Case 2: 0
 

Source


这题我提交了不下30多次。T-T

首先,这题从技术上来讲没有多大难度,坑就坑在英文题目的理解和题目里的陷阱吧。

题意上就是请求要按照课程在input出现的顺序排序,相同课程的按请求出现的顺序排序。

在不断的WA中,我发现了以下几个可能遇到的陷阱

1:课程可能不占用时间。  比如:课程号 111  时间无。

2:课程的时间会重复出现,比如:课程号 111   时间为 1 2 2 3 4 5.....。


#include<iostream>
#include<cstdio>
#include<map>
#include<set>
#include<string>
#include<cstring>
#include<algorithm>
using namespace std;
struct ct//课程
{
    int cap;//课容量
    set<int> cor;//课时间
} temp;
struct st//学生
{
    set<int> chosed;//已选课程
    set<int> timex;//已占时间
} temt;
struct rt//请求
{
    string a;//学生号
    int b;//课程号
    int ct;//请求次序
} re[515];
map<int,struct ct> course;//课程查找
map<string,struct st> stud;//学生查找
map<int,int> flag;//课程次序
bool cmp(const struct rt &a,const struct rt &b)
{
    if(flag[a.b]<flag[b.b])  return true;
    else if(flag[a.b]==flag[b.b])
    {
        return a.ct<b.ct;
    }
    else return false;
}
int main()
{
    int n,m,r,cnt,t,a,cas=0,cname;
    string sname;
    for(cnt=0; cin>>n>>m>>r; cnt=0)
    {
        course.clear();
        stud.clear();
        flag.clear();
        temt.chosed.clear();
        temt.timex.clear();
        for(int i=0; i<n; ++i)
        {
            cin>>sname;
            stud.insert(make_pair(sname,temt));
        }
        for (int i=0; i<m; ++i)
        {
            temp.cor.clear();
            cin>>cname>>temp.cap>>t;
            flag.insert(make_pair(cname,i));
            for(int j=0; j<t; ++j)
            {
                cin>>a;
                temp.cor.insert(a);
            }
            course[cname]=temp;
        }
        map<int,struct ct>::iterator itc;
        map<string,struct st>::iterator its;
        for(int i=0; i<r; ++i)
        {
            cin>>re[i].a>>re[i].b;
            re[i].ct=i;
        }
        sort(re,re+r,cmp);//排序
        for(int i=0;i<r;++i)
        {
        sname=re[i].a;//请求的学生号
        cname=re[i].b;//请求的课程号
        bool flag=true;
        itc=course.find(cname);
        its=stud.find(sname);
        if(itc->second.cap<=0)  continue;//课程容量等于0,不接受请求
        if((its->second.chosed.count(cname))!=0) continue;//该学生已选该课程,不接受请求
        int len=itc->second.cor.size();
        for(set<int>::iterator jt=itc->second.cor.begin();jt!=itc->second.cor.end();++jt)//查看是否有时间冲突
        {
        if((its->second.timex.count(*jt))!=0)
        {
        flag=false;
        break;
        }
        }
        if(flag)//可以接受改请求
        {
        cnt++;
        (itc->second.cap)--;//该课程容量减少
        its->second.chosed.insert(cname);
        for(set<int>::iterator jt=itc->second.cor.begin();jt!=itc->second.cor.end();++jt)
        its->second.timex.insert(*jt);
        }
        }
        printf("Case %d: %d\n",++cas,cnt);
    }
    return 0;
}


【事件触发一致性】研究多智能体网络如何通过分布式事件驱动控制实现有限时间内的共识(Matlab代码实现)内容概要:本文围绕多智能体网络中的事件触发一致性问题,研究如何通过分布式事件驱动控制实现有限时间内的共识,并提供了相应的Matlab代码实现方案。文中探讨了事件触发机制在降低通信负担、提升系统效率方面的优势,重点分析了多智能体系统在有限时间收敛的一致性控制策略,涉及系统模型构建、触发条件设计、稳定性与收敛性分析等核心技术环节。此外,文档还展示了该技术在航空航天、电力系统、机器人协同、无人机编队等多个前沿领域的潜在应用,体现了其跨学科的研究价值和工程实用性。; 适合人群:具备一定控制理论基础和Matlab编程能力的研究生、科研人员及从事自动化、智能系统、多智能体协同控制等相关领域的工程技术人员。; 使用场景及目标:①用于理解和实现多智能体系统在有限时间内达成一致的分布式控制方法;②为事件触发控制、分布式优化、协同控制等课题提供算法设计与仿真验证的技术参考;③支撑科研项目开发、学术论文复现及工程原型系统搭建; 阅读建议:建议结合文中提供的Matlab代码进行实践操作,重点关注事件触发条件的设计逻辑与系统收敛性证明之间的关系,同时可延伸至其他应用场景进行二次开发与性能优化。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值