Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the registered course list for each student who comes for a query.

Input Specification:

Each input file contains one test case. For each case, the first line contains 2 positive integers: N (<=40000), the number of students who look for their course lists, and K (<=2500), the total number of courses. Then the student name lists are given for the courses (numbered from 1 to K) in the following format: for each course i, first the course index i and the number of registered students Ni (<= 200) are given in a line. Then in the next line, Ni student names are given. A student name consists of 3 capital English letters plus a one-digit number. Finally the last line contains the N names of students who come for a query. All the names and numbers in a line are separated by a space.

Output Specification:

For each test case, print your results in N lines. Each line corresponds to one student, in the following format: first print the student's name, then the total number of registered courses of that student, and finally the indices of the courses in increasing order. The query results must be printed in the same order as input. All the data in a line must be separated by a space, with no extra space at the end of the line.

Sample Input:

11 5
4 7
BOB5 DON2 FRA8 JAY9 KAT3 LOR6 ZOE1
1 4
ANN0 BOB5 JAY9 LOR6
2 7
ANN0 BOB5 FRA8 JAY9 JOE4 KAT3 LOR6
3 1
BOB5
5 9
AMY7 ANN0 BOB5 DON2 FRA8 JAY9 KAT3 LOR6 ZOE1
ZOE1 ANN0 BOB5 JOE4 JAY9 FRA8 DON2 AMY7 KAT3 LOR6 NON9

Sample Output:

ZOE1 2 4 5
ANN0 3 1 2 5
BOB5 5 1 2 3 4 5
JOE4 1 2
JAY9 4 1 2 4 5
FRA8 3 2 4 5
DON2 2 4 5
AMY7 1 5
KAT3 3 2 4 5
LOR6 4 1 2 4 5
NON9 0

总结:

1、由于学生数太多,再乘以课程数之后数量过大,因此不能使用二维数组存储选课信息(一个学生一行)。方案一:以学生为主体记录选课信息,使用map<string, set<int> >进行以学生名字为键的存储方法。但导致了最后一组数据超时。

2、方案一要同时使用map,string,加之数据过大导致超时。因此方案二可以直接自己写一个hash函数,映射 char[ ] 到stu数组下标的关系。这样省去了char [ ] 与string之间的转换,也不需要再使用map进行查询操作。

3、map[ " key" ] 在查询过程中必须先确定是否存在 if(mp.count( "key" ) == 0),否则会返回错误的结果(没有该键值时,会在map中插入该key,并将其值设为默认值)。

4、字符串映射为int的方法:若只有小写字母,则将其当成26进制数,计算出int。若字符串为字母加数字,则映射成36进制。如果数字仅仅在固定位置(如本题),则先将字母计算为26进制int数,再 将其 * 10 + 末位数字。

超时代码:

 #include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<map>
using namespace std;
string search_[];
vector<int> stu[];
map<string, int> mp;
bool cmp(int a, int b){
return a < b;
}
int main(){
int N, K, cIndex, Ni, stuId = ;
string temp;
char id[];
scanf("%d%d", &N, &K);
for(int i = ; i < K; i++){
scanf("%d %d", &cIndex, &Ni);
for(int j = ; j < Ni; j++){
int pt;
scanf("%s", id);
temp = id;
if(mp.count(temp) == ){
pt = stuId;
mp[temp] = stuId++;
}else{
pt = mp[temp];
}
stu[pt].push_back(cIndex);
}
}
for(int i = ; i < N; i++){
scanf("%s", id);
temp = id;
search_[i] = temp;
}
for(int i = ; i < N; i++){
printf("%s", search_[i].c_str());
if(mp.count(search_[i]) == ){
printf(" 0\n");
continue;
}
int pt = mp[search_[i]];
sort(stu[pt].begin(), stu[pt].end());
int len = stu[pt].size();
printf(" %d", len);
for(int j = ; j < len; j++)
printf(" %d", stu[pt][j]);
printf("\n");
}
return ;
}

正确代码:

 #include<cstdio>
#include<iostream>
#include<algorithm>
#include<vector>
#include<string.h>
using namespace std;
vector<int> stu[ * * * + ];
bool cmp(int a, int b){
return a < b;
}
long long hash_(char str[]){
int len = strlen(str);
long long ans = , P = ;
for(int i = len - ; i >= ; i--){
ans += (str[i] - 'A') * P;
P *= ;
}
ans = ans * + str[len - ] - '';
return ans;
}
int main(){
int N, K, cIndex, Ni, stuId = ;
string temp;
char id[];
scanf("%d%d", &N, &K);
for(int i = ; i < K; i++){
scanf("%d %d", &cIndex, &Ni);
for(int j = ; j < Ni; j++){
long long pt;
scanf("%s", id);
pt = hash_(id);
stu[pt].push_back(cIndex);
}
}
for(int i = ; i < N; i++){
scanf("%s", id);
printf("%s", id);
long long pt = hash_(id);
sort(stu[pt].begin(), stu[pt].end());
int len = stu[pt].size();
printf(" %d", len);
for(int j = ; j < len; j++)
printf(" %d", stu[pt][j]);
printf("\n");
}
return ;
}

A1039. Course List for Student的更多相关文章

  1. PAT甲级——A1039 Course List for Student

    Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists o ...

  2. 【算法笔记】A1039 Course List for Student

    https://pintia.cn/problem-sets/994805342720868352/problems/994805447855292416 题意: 有N个学生,K节课.给出选择每门课的 ...

  3. A1039 Course List for Student (25 分)

    一.技术总结 这里由于复杂度的限制,只能够使用vector,然后进行字符串转化:考虑到string.cin.cout会超时,可以使⽤用hash(262626*10+10)将学⽣生姓名变为int型,然后 ...

  4. PAT A1039、A1047——vector常见用法

    vector 常用函数实例 (1)push_back() (2)pop_back() (3)size() (4)clear():清空vector中所有元素 (5)insert():insert(it, ...

  5. 算法笔记 第6章 C++标准模版库(STL)介绍 学习笔记

    6.1 vector的常见用法详解 vector:变长数组,长度根据需要而自动改变的数组 要使用vector,则需要添加vector头文件,即#include<vector>,还需要在头文 ...

  6. PAT甲级题解分类byZlc

    专题一  字符串处理 A1001 Format(20) #include<cstdio> int main () { ]; int a,b,sum; scanf ("%d %d& ...

  7. java.io.NotSerializableException: test.io.file.Student

    java.io.NotSerializableException: test.io.file.Student    at java.io.ObjectOutputStream.writeObject0 ...

  8. 使用java反射机制编写Student类并保存

    定义Student类 package org; public class Student { private String _name = null; ; ; public Student() { } ...

  9. 设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。

    一.            设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表( ...

随机推荐

  1. cgroup.conf系统初始配置

    # Slurm cgroup support configuration file # # See man slurm.conf and man cgroup.conf for further # i ...

  2. require.ensure的用法;异步加载-代码分割;

    webpack异步加载的原理 webpack ensure相信大家都听过.有人称它为异步加载,也有人说做代码切割,那这 个家伙到底是用来干嘛的?其实说白了,它就是把js模块给独立导出一个.js文件的, ...

  3. B树、B-树、B+树、B*树相关

    B树 即二叉搜索树: 1.所有非叶子结点至多拥有两个儿子(Left和Right): 2.所有结点存储一个关键字: 3.非叶子结点的左指针指向小于其关键字的子树,右指针指向大于其关键字的子树: 如: B ...

  4. PHP输入流 php://input 相关【转】

    为什么xml_rpc服务端读取数据都是通过file_get_contents(‘php://input', ‘r').而不是从$_POST中读取,正是因为xml_rpc数据规格是xml,它的Conte ...

  5. 【个人项目总结】C#四则运算表达式生成程序

    S1&2.个人项目时间估算 PSP表格如下: PSP2.1 Personal Software Process Stages Time(Before) Time(After) Planning ...

  6. LINUX内核分析第七周学习总结

    LINUX内核分析第七周学习总结 标签(空格分隔): 20135328陈都 陈都 原创作品转载请注明出处 <Linux内核分析>MOOC课程 http://mooc.study.163.c ...

  7. Java 常用类的使用例子(整理)

    可变字符序列——StringBuffer StringBuffer类和String类的方法几乎一样,不过StringBuffer对象表示的字符串是可以改变的,而String对象保存的字符串是不可变的. ...

  8. [转帖]速度快散热好 为什么U.2 SSD还没普及?

    速度快散热好 为什么U.2 SSD还没普及?   经典的影视剧中总有那么几位武林高手,江湖上只闻其名,不见其形.今天我们要聊的这位爷,誓要拳打南山M.2,脚踩北海SATA 3!它就是固态硬盘界久负盛名 ...

  9. Java中对域和静态方法的访问不具有多态性

    1.将方法调用同方法主体关联起来被称为 2.编译期绑定(静态)是在程序编译阶段就确定了引用对象的类型 3.运行期绑定(动态绑定)是指在执行期间判断所引用对象的实际类型,根据其实际的类型调用其相应的方法 ...

  10. Linux基础学习(5)--文本编辑器Vim

    第五章——文本编辑器Vim 一. Vim常用操作 1.Vim简介:              Vim是一个功能强大的全屏幕文本编辑器,是Linux/UNIX上最常用的文本编辑器,它的作用是建立.编辑. ...