1039 Course List for Student 25

cpp 复制代码
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
const int range = 26*26*26*10 + 5;
vector<int> Stu[range];

int getId(char s[]){
    int res = 0;
    for(int i = 0; i < 3; i++){
        res = res * 26 + (s[i] -'A');
    }
    res = res * 10 + s[3] - '0';
    return res;
}

int main() {
    char name[5];
    int N,M;
    scanf("%d%d", &N, &M);
    for(int i = 0; i < M; i++){
        int classId, chooseNum;
        scanf("%d%d", &classId, &chooseNum);
        for(int j = 0; j < chooseNum; j++){
            scanf("%s", name);
            Stu[getId(name)].push_back(classId);
        }
    }
    for(int i = 0; i < N; i++){
        scanf("%s", name);
        int id = getId(name);
        sort(Stu[id].begin(), Stu[id].end());
        printf("%s %d", name, Stu[id].size());
        for(int j = 0; j < Stu[id].size(); j++){
            printf(" %d", Stu[id][j]);
        }
        printf("\n");
    }
    return 0;
}
相关推荐
thisiszdy6 分钟前
<C++> XlsxWriter写EXCEL
c++·excel
生信与遗传解读32 分钟前
XGBoost算法在自定义数据集中预测疾病风险
人工智能·python·算法·数据分析
꧁坚持很酷꧂33 分钟前
Qt天气预报系统实现HTTP请求
开发语言·qt·http
14_1135 分钟前
Cherno C++学习笔记 P51 创建并使用库
c++·笔记·学习
这辈子秃头是不可能的38 分钟前
OpenGL利用DDA算法绘制图形,并增加鼠标键盘交互
算法·计算机外设·交互
AI向前看40 分钟前
Perl语言的文件操作
开发语言·后端·golang
李匠202440 分钟前
Scala分布式语言二(基础功能搭建、面向对象基础、面向对象高级、异常、集合)
开发语言·后端·scala
Quantum&Coder1 小时前
Dart语言的数据结构
开发语言·后端·golang
灵哎惹,凌沃敏1 小时前
华为C语言编程规范总结
c语言·开发语言
计算机毕设指导61 小时前
基于Springboot的景区民宿预约系统【附源码】
java·开发语言·spring boot·后端·mysql·spring·intellij idea