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. 继承:call、apply、bind方法

    javascript 中,call 和 apply 都是为了改变某个函数运行时的上下文(context)而存在的,换句话说,就是为了改变函数体内部 this 的指向. call,apply,bind这 ...

  2. 《Linux内核设计与实现》第3章读书整理

    第三章.进程管理 3.1进程 1.进程就是处于执行期的程序,但进程并不仅仅局限于一段可执行程序代码 2.执行线程: 简称线程,是在进程中活动的对象.每个线程都拥有一个独立的程序计数器.进程栈和一组进程 ...

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

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

  4. android开发之Tabhost刷新

    在android中,使用tabHost的时候,如果tab被点击,该tab所对应的activity被加载了,从别的tab切换回来的时候,activity不会再次被创建了(onCreate),所以要想每次 ...

  5. 生命游戏&一维细胞自动机 笔记

    de 生命游戏是一种简单的聚合模型,展示了事物是如何聚合的,是自动机(CA)模型的一种.由剑桥大学约翰康威发明,其规则为: 1. 每个细胞拥有八个邻居,细胞状态只有存活(黑)和死亡(白)两种: 2.处 ...

  6. centos7 服务操作命令

    systemctl list-unit-files --type service --all 操作防火墙: https://www.jianshu.com/p/411274f96492 操作VNC: ...

  7. 将J2EE的Web项目设置为支持Activiti

    <natures> <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> <nature>o ...

  8. [转帖].NET Core 2.0 是您的最好选择吗?

    .NET Core 2.0 是您的最好选择吗? https://www.cnblogs.com/vipyoumay/p/7388371.html 1. NET Core 2.0 是您的最好选择吗? 1 ...

  9. 自定义Label控件

    最近开发过程中有一个需求就是修改label控件的模板,使其能够在鼠标移近的时候变成TextBox,从而方便输入,然后进行相应的修改,最终达到动态修改Label的目的,这里贴出相应的代码,并做简要的分析 ...

  10. Twitter数据挖掘:如何使用Python分析大数据 (3)

    让我们来拉取Twitter账号@NyTimes的最近20条微博. 我们可以创建变量来存放待拉取的微博数量(即count),以及待拉取的用户(即name).然后用这两个参数调用user_timeline ...