1039 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.
Each input file contains one test case. For each case, the first line contains 2 positive integers: N (≤40,000), the number of students who look for their course lists, and K (≤2,500), 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.
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.
- 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
- 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
总结:这道题很早就想出来了,但是一直没有写对,不是格式问题就是粗心,没有输入,还是得多练,多写题目,多积累经验
思路:用map
代码:
- #include
- #include
- #include
- #include
- using namespace std;
-
- int main(){
- map
int>> m; - int n,k;
- cin >> n >> k;
-
- int t,w;
- for(int i=0;i
- scanf("%d %d",&t,&w);
- string name;
- for(int j=0;j
- cin >> name;
- m[name].push_back(t);
- }
- }
-
- string name;
- for(int i=0;i
- cin >> name;
- sort(m[name].begin(),m[name].end());
- cout << name << ' ' << m[name].size();
- for(int i=0;i
size();i++) - printf(" %d",m[name][i]);
- puts("");
- }
-
- return 0;
- }
看看大佬的代码,会有收获的!
思路:将对应的ID转化为数字,使用vector>这样的数据结果来存储,将字母看成是一个是26进制的数,将它转化为十进制数,表示一个人的ID,查询、打印结果的过程都是差不多的了
- #include
- #include
- #include
- using namespace std;
- int getid(char *name) {
- int id = 0;
- for(int i = 0; i < 3; i++)
- id = 26 * id + (name[i] - 'A');
- id = id * 10 + (name[3] - '0');
- return id;
- }
- const int maxn = 26 * 26 * 26 * 10 + 10;
- vector<int> v[maxn];
-
- int main() {
- int n, k, no, num, id = 0;
- char name[5];
- scanf("%d %d", &n, &k);
- for(int i = 0; i < k; i++) {
- scanf("%d %d", &no, &num);
- for(int j = 0; j < num; j++) {
- scanf("%s", name);
- id = getid(name);
- v[id].push_back(no);
- }
- }
- for(int i = 0; i < n; i++) {
- scanf("%s", name);
- id = getid(name);
- sort(v[id].begin(), v[id].end());
- printf("%s %lu", name, v[id].size());
- for(int j = 0; j < v[id].size(); j++)
- printf(" %d", v[id][j]);
- printf("\n");
- }
- return 0;
- }
好好学习,天天向上!
我要考研!
2022.11.5
- /*
- 思路:思路比较简单,使用map
> 这个数据结构存储每个学生选择的课的编号, - 模拟过程就可以得出结果了
- */
- #include
- #include
- #include
- #include
- using namespace std;
-
- map
int>> m; - int main(){
- int n,k;
- scanf("%d%d",&n,&k);
-
- int t,q;
- for(int i=0;i
- scanf("%d%d",&t,&q);
- string name;
- for(int j=0;j
- cin >> name;
- m[name].push_back(t);
- }
- }
- string name;
- for(int i=0;i
- cin >> name;
- cout << name;
- printf(" %d",m[name].size());
- sort(m[name].begin(),m[name].end());
- for(int j=0;j
size();j++) printf(" %d",m[name][j]); - puts("");
- }
- return 0;
- }
-
相关阅读:
Mac OS 使用Metal渲染NV12、YUV420、CMSampleBufferRef视频
vue3项目修改浏览器的项目icon小图标
关键词分析-对同行网站进行全面的分析-免费关键词分析工具
[附源码]java毕业设计大学生就业信息检索系统
01.VS2010 32位和64位WDK环境设置 2种方法
COSCon'22第七届中国开源年会火热筹备中,第一波赞助伙伴已集结,一起上车共赴开源盛宴吧~...
自学网络安全的三个必经阶段(含路线图)
用C#(WinForm)开发触摸屏,体验感满满
6 Java之 Debug & 进制 原码 反码 补码& 二维数组
Qt的入门
-
原文地址:https://blog.csdn.net/weixin_50679551/article/details/126958588