PAT_A 1047. Student List for Course (25)

来源:互联网 发布:淘宝网拍 编辑:程序博客网 时间:2024/06/15 23:39

1047. Student List for Course (25)

Zhejiang University has 40000 students and provides 2500 courses. Now given the registeredcourse list of each student, you are supposed to output the student name lists of all the courses.Input Specification:Each input file contains one test case. For each case, the first line contains 2 numbers: N (<=40000), the total number of students, and K (<=2500), the total number of courses. Then Nlines follow, each contains a student's name (3 capital English letters plus a one-digitnumber), a positive number C (<=20) which is the number of courses that this student has registered, and then followed by C course numbers. For the sake of simplicity, the courses are numbered from 1 to K.Output Specification:For each test case, print the student name lists of all the courses in increasing order of the course numbers. For each course, first print in one line the course number and the number of registered students, separated by a space. Then output the students' names in alphabetical order. Each name occupies a line.Sample Input:10 5ZOE1 2 4 5ANN0 3 5 2 1BOB5 5 3 4 2 1 5JOE4 1 2JAY9 4 1 2 5 4FRA8 3 4 2 5DON2 2 4 5AMY7 1 5KAT3 3 5 4 2LOR6 4 2 4 1 5Sample Output:1 4ANN0BOB5JAY9LOR62 7ANN0BOB5FRA8JAY9JOE4KAT3LOR63 1BOB54 7BOB5DON2FRA8JAY9KAT3LOR6ZOE15 9AMY7ANN0BOB5DON2FRA8JAY9KAT3LOR6ZOE1
  • 分析:
      - 题目:给定格式化的人名ABC0,和课号(1-N),给出选课情况,升序输出每个课程的选课人名(升序)。
      - 利用stl的sort排序完成,但string的排序太慢,导致最后的测试点超时。故改变思路,string to int
       中间用数字表示人名,排完序后,再转换回来,这样人名排序就是数字的比较。26进制10进制转化。

  • code:

#include<iostream>#include<vector>#include<cstdio>#include<algorithm>using namespace std;int nameToNum(string name){    int num=(name[0]-'A');//懒得写循环了,之前是写的循环    num*=26;    num+=(name[1]-'A');    num*=26;    num+=(name[2]-'A');    num*=26;    num+=(name[3]-'0');    return num;}string numToName(int n){    char tmp[5];    tmp[4]='\0';    tmp[3]=char(n%26+'0');    n/=26;    tmp[2]=char(n%26+'A');    n/=26;    tmp[1]=char(n%26+'A');    n/=26;    tmp[0]=char(n%26+'A');    return tmp;}vector<int> course[2550];int main(){    freopen("in","r",stdin);    int N,K,C,tmp,iname;    char name[5];    scanf("%d%d",&N,&K);    for(int i=0;i<N;i++)    {        scanf("%s%d",name,&C);        iname=nameToNum(name);        for(int j=0;j<C;j++)        {            scanf("%d",&tmp);            course[tmp].push_back(iname);        }    }    int size=0;    string sname;    for(int i=1;i<=K;i++)    {        size=course[i].size();        printf("%d %d\n",i,size);        sort(course[i].begin(),course[i].end());        for(int j=0;j<course[i].size();j++)        {            sname=numToName(course[i][j]);            printf("%s\n",sname.c_str());        }    }    return 0;}
  • AC
    pat_a1047
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 京东e卡丢了怎么办 京东e卡没有密码怎么办 同一个订单微信付款两次怎么办 京东购物卡掉了怎么办 京东购物卡丢了怎么办 京东快递丢了怎么办 京东e卡支付多了怎么办 京东帐号忘了怎么办 京东白条风控怎么办 我有个破袄…没有衣服怎么办办 轩辕传奇手游灵宠融合错了怎么办 各尧学生不能用怎么办? 山东一卡通商务卡丢了怎么办 和信通过期了怎么办 和信通过期怎么办延期 和信通过期余额怎么办 超市储蓄卡丢了怎么办 提现提到注销卡怎么办 美通卡过期2年了怎么办 物美美通卡丢失怎么办 网上购物电话留错了怎么办 微信斗牛一直输怎么办 微信斗牛输了钱怎么办 微信举报诈骗不成功该怎么办 沙河拿服装太贵怎么办 包上的暗扣掉了怎么办 银手镯暗扣松老是掉怎么办 包包纽扣锁坏了怎么办 包的纽扣坏了怎么办 包上的纽扣坏了怎么办 洗衣服不小心用了色渍净怎么办 洗衣服不小心沾了卫生纸怎么办 麻料裤子扎皮肤怎么办 衣服没洗干净有点发光怎么办 桑蚕丝衣服脏了发光洗不掉怎么办 厨师衣服的油味怎么办 看上夜场的小姐了怎么办 楼卖完了水吧员怎么办 窗帘短了20公分怎么办 白色鞋子沾油了怎么办 面试时没有正装怎么办