A1039. Course List for Student
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的更多相关文章
- PAT甲级——A1039 Course List for Student
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists o ...
- 【算法笔记】A1039 Course List for Student
https://pintia.cn/problem-sets/994805342720868352/problems/994805447855292416 题意: 有N个学生,K节课.给出选择每门课的 ...
- A1039 Course List for Student (25 分)
一.技术总结 这里由于复杂度的限制,只能够使用vector,然后进行字符串转化:考虑到string.cin.cout会超时,可以使⽤用hash(262626*10+10)将学⽣生姓名变为int型,然后 ...
- PAT A1039、A1047——vector常见用法
vector 常用函数实例 (1)push_back() (2)pop_back() (3)size() (4)clear():清空vector中所有元素 (5)insert():insert(it, ...
- 算法笔记 第6章 C++标准模版库(STL)介绍 学习笔记
6.1 vector的常见用法详解 vector:变长数组,长度根据需要而自动改变的数组 要使用vector,则需要添加vector头文件,即#include<vector>,还需要在头文 ...
- PAT甲级题解分类byZlc
专题一 字符串处理 A1001 Format(20) #include<cstdio> int main () { ]; int a,b,sum; scanf ("%d %d& ...
- java.io.NotSerializableException: test.io.file.Student
java.io.NotSerializableException: test.io.file.Student at java.io.ObjectOutputStream.writeObject0 ...
- 使用java反射机制编写Student类并保存
定义Student类 package org; public class Student { private String _name = null; ; ; public Student() { } ...
- 设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。
一. 设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表( ...
随机推荐
- 5分钟入门自动化测试——你应该学会的Postman用法(2)
前言 之前的一篇文章<你应该学会的Postman用法>,主要介绍了postman的一些高级的用法,便于日常开发和调试使用,本文的基础是对postman的基本使用以及一些高级用法有一定的了解 ...
- Helper
//检测端口是否使用 public static bool VerifyListenerPort(int port) { bool inUse = false; System.Net.NetworkI ...
- SpringBoot笔记--FastJson
FastJson配置 ObjectId class ObjectIdSerializer : ObjectSerializer { override fun write(serializer: JSO ...
- Jenkins日常运维笔记-重启数据覆盖问题、迁移、基于java代码发版(maven构建)
之前在公司机房部署了一套jenkins环境,现需要迁移至IDC机房服务器上,迁移过程中记录了一些细节:1)jenkins默认的主目录放在当前用户家目录路径下的.jenkins目录中.如jenkins使 ...
- Tomcat通过Memcached实现session共享的完整部署记录
对于web应用集群的技术实现而言,最大的难点就是:如何能在集群中的多个节点之间保持数据的一致性,会话(Session)信息是这些数据中最重要的一块.要实现这一点, 大体上有两种方式:一种是把所有Ses ...
- linux-shell-命令总结
第一种方法执行: 第二种方法执行: 第三种方法执行: 第四种方法:执行 第三种和第四种方法都是在新的进程里执行程序 函数方法 方法就是一个命令,命令写在字符串的第一个位置 type:可以接外部命令 ...
- M2项目测试
更为详细的测试报告,我们会在后续整理出来. 在M1的基础上,我们新增加了两个个数据表来存放问答对以及标签信息的表:C705question表 与 tag表 第二次迭代中,我们积极地同第三组沟通,了解到 ...
- 关于在VB.NET中调用使用VC++编写的类库dll的一点笔记
前言 结对作业要求一出来,我就立刻想到了把“计算核心”封装成dll,然后使用vb.net编写UI调用dll的思路.然而在实现过程中却遇到了很多的问题. 我在这个过程中是负责使用vb.net编写UI并调 ...
- PAT 1049 数列的片段和
https://pintia.cn/problem-sets/994805260223102976/problems/994805275792359424 给定一个正数数列,我们可以从中截取任意的连续 ...
- node的读写流
let http = require('http'); http.createServer((req,res)=>{ res.end(); }).listen(,()=>{ console ...