假设全校有最多40000名学生和最多2500门课程。现给出每个学生的选课清单,要求输出每门课的选课学生名单。
输入的第一行是两个正整数:N(≤40000),为全校学生总数;K(≤2500),为总课程数。此后N行,每行包括一个学生姓名(3个大写英文字母+1位数字)、一个正整数C(≤20)代表该生所选的课程门数、随后是C个课程编号。简单起见,课程从1到K编号。
顺序输出课程1到K的选课学生名单。格式为:对每一门课,首先在一行中输出课程编号和选课学生总数(之间用空格分隔),之后在第二行按字典序输出学生名单,每个学生名字占一行。
10 5
ZOE1 2 4 5
ANN0 3 5 2 1
BOB5 5 3 4 2 1 5
JOE4 1 2
JAY9 4 1 2 5 4
FRA8 3 4 2 5
DON2 2 4 5
AMY7 1 5
KAT3 3 5 4 2
LOR6 4 2 4 1 5
1 4
ANN0
BOB5
JAY9
LOR6
2 7
ANN0
BOB5
FRA8
JAY9
JOE4
KAT3
LOR6
3 1
BOB5
4 7
BOB5
DON2
FRA8
JAY9
KAT3
LOR6
ZOE1
5 9
AMY7
ANN0
BOB5
DON2
FRA8
JAY9
KAT3
LOR6
ZOE1
https://blog.csdn.net/qq_41231926/article/details/84932624
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int N, K;
vector<string> course[2501];
int main(){
scanf("%d %d", &N, &K);
for(int i = 0; i < N; i++){
char name[5];
scanf("%s", name);
int C;
scanf("%d", &C);
for(int j = 0; j < C; j++){
int num;
scanf("%d", &num);
course[num].push_back(name);
}
}
for(int i = 1; i <= K; i++){
printf("%d %d\n", i, course[i].size());
sort(course[i].begin(), course[i].end());
for(int j = 0; j < course[i].size(); j++){
printf("%s\n", course[i][j].c_str());
}
}
return 0;
}
自己做的时候就遇到了很多坑,比如cin cout 一定会超时就用scanf和printf,,但是使用了string 就一定会超时,用char就不会超时
用string,只能过一个测试样例,把string 的name换成 char name[5]读入,再转换成string存储,除最后一个测试样例都能过,最后一个还是超时。
#include<iostream>
#include<map>
#include<set>
#include<string>
using namespace std;
int main(){
int a,b;
scanf("%d %d",&a,&b);
map<int,set<string>> mp;
for(int i=0;i<a;i++){
char s[5];
int k;
int n;
//s.resize(5);
scanf("%s",s);
scanf("%d",&k);
while(k-->0){
scanf("%d",&n);
mp[n].insert(s);
}
}
for(int i=1;i<=b;i++){
if(mp[i].size()>=0){
printf("%d %d\n",i,mp[i].size());
for(auto it = mp[i].begin();it != mp[i].end(); it++){
//cout<<*it<<endl;
printf("%s\n",it->c_str());
}
}
}
return 0;
}
cout就会全挂
这样输出printf("%s\n",it->c_str());
能过前面五个但是超时不能避免