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. (6)学习笔记 ) ASP.NET CORE微服务 Micro-Service ---- AOP框架

    AOP 框架基础 要求懂的知识:AOP.Filter.反射(Attribute). 如果直接使用 Polly,那么就会造成业务代码中混杂大量的业务无关代码.我们使用 AOP (如果不了解 AOP,请自 ...

  2. 【数据库】Mysql中主键的几种表设计组合的实际应用效果

    写在前面 前前后后忙忙碌碌,度过了新工作的三个月.博客许久未新,似乎对忙碌没有一点点防备.总结下来三个月不断的磨砺自己,努力从独乐乐转变到众乐乐,体会到不一样的是,连办公室的新玩意都能引起莫名的兴趣了 ...

  3. NodeMCU学习(二) : 如何使用NodeMCU进行开发

    NodeMCU的GPIO口 Arduino的引脚号与NodeMCU的GPIO口直接对应,NodeMCU的GPIO函数pinMode,  digitalWrite, DigitalRead也是和Ardu ...

  4. Python-集合-17

    ''' 集合:可变的数据类型,他里面的元素必须是不可变的数据类型,无序,不重复. {} ''' set1 = set({1,2,3}) # set2 = {1,2,3,[2,3],{'name':'a ...

  5. Sprint 冲刺第三阶段第3-5天 数据库代码

    数据库代码: package com.example.brdemo; import android.app.Activity; import android.content.Intent; impor ...

  6. 小学四则运算APP 第二阶段冲刺-第三天

    团队成员:陈淑筠.杨家安.陈曦 团队选题:小学四则运算APP 第二次冲刺阶段时间:11.29~12.09 本次发布的是判断题的部分代码 panduanset.java import com.examp ...

  7. 小学四则运算APP 第一个冲刺 第七天

    团队成员:陈淑筠.杨家安.陈曦 团队选题:小学四则运算APP 第一次冲刺阶段时间:11.17~11.27 本次发布的是完成的功能一: 程序代码: MainActivity代码: import andr ...

  8. 实验1--用C语言编程四则运算

    #include<stdio.h>#include<stdlib.h>#include <time.h>#define N 30main(){int a,b,k,i ...

  9. ubuntu16.04下载安装navicate

    1.下载试用版本地址: https://www.navicat.com.cn/download/navicat-premium 2.解压缩 tar -zxvf  /home/rain/download ...

  10. 自己写的browse.bat与perl写的url_handler.pl的比较

    以前自己也写过Windows下自动打开多个浏览器测试某个URI,提高浏览器兼容性测试效率. 但是写的browse.bat文件还是最基础简陋的 @echo off if '%1'=='-c' ( sta ...