To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mathematics (Calculus or Linear Algebra), and E - English. At the mean time, we encourage students by emphasizing on their best ranks -- that is, among the four ranks with respect to the three courses and the average grade, we print the best rank for each student.

For example, The grades of C, M, E and A - Average of 4 students are given as the following:

StudentID  C  M  E  A

310101     98 85 88 90

310102     70 95 88 84

310103     82 87 94 88

310104     91 91 91 91

Then the best ranks for all the students are No.1 since the 1st one has done the best in C Programming Language, while the 2nd one in Mathematics, the 3rd one in English, and the last one in average.

Input

Each input file contains one test case. Each case starts with a line containing 2 numbers N and M (<=2000), which are the total number of students, and the number of students who would check their ranks, respectively. Then N lines follow, each contains a student ID which is a string of 6 digits, followed by the three integer grades (in the range of [0, 100]) of that student in the order of C, M and E. Then there are M lines, each containing a student ID.

Output

For each of the M students, print in one line the best rank for him/her, and the symbol of the corresponding rank, separated by a space.

The priorities of the ranking methods are ordered as A > C > M > E. Hence if there are two or more ways for a student to obtain the same best rank, output the one with the highest priority.

If a student is not on the grading list, simply output "N/A".

Sample Input

5 6

310101 98 85 88

310102 70 95 88

310103 82 87 94

310104 91 91 91

310105 85 90 90

310101

310102

310103

310104

310105

999999

Sample Output

1 C

1 M

1 E

1 A

3 A

N/A

排名不应该只是简单的排序算法:

比如说  100,100,99,……   得99分是人是 第二名,而不是第三名。

所以,应该先对分数进行排序,然后在更新名次,算法如下:

      SS[].ra=; //第一个肯定是第一名

          int count=;

          for(i=;i<n;i++)

             {

                   if(SS[i].A==SS[i-].A)//A为平均分

                   {

                       SS[i].ra=SS[i-].ra;//ra 平均分排名

                   count++;//如果分数相同,那么名次和前一个相同,计数器++

                   }

                 else

                     {

                        SS[i].ra=SS[i-].ra+count;

                         count=;//计算器记得还原

                     }

          }

AC代码:

 #include <iostream>

 #include <algorithm>

 #include <string>

 using namespace std;

 struct stu

 {

    string ID;

    int A,C,M,E;

    int ra,rc,rm,re;

 };

 stu SS[];

 bool cmp1(stu a,stu b)

 {

     return a.A>b.A;

 }

 bool cmp2(stu a,stu b)

 {

     return a.C>b.C;

 }

 bool cmp3(stu a,stu b)

 {

     return a.M>b.M;

 }

 bool cmp4(stu a,stu b)

 {

     return a.E>b.E;

 }

 int main()

 {

       int n;

       while(cin>>n)

       {

             int m,i;

          cin>>m;

          for(i=;i<n;i++)

          {

                cin>>SS[i].ID>>SS[i].C>>SS[i].M>>SS[i].E;

          }

           for(i=;i<n;i++)

          {

                 SS[i].A=(SS[i].C+SS[i].M+SS[i].E)/;

                     SS[i].ra=;

                     SS[i].rc=;

                     SS[i].rm=;

                     SS[i].re=;

          }

        sort(SS,SS+n,cmp1);

          int count=;

          for(i=;i<n;i++)

             {

                   if(SS[i].A==SS[i-].A)

                   {

                       SS[i].ra=SS[i-].ra;

                               count++;

                   }

                 else

                     {

                        SS[i].ra=SS[i-].ra+count;

                         count=;

                     }

          }

             sort(SS,SS+n,cmp2);

           count=;

          for(i=;i<n;i++)

          {

              if(SS[i].C==SS[i-].C)

                   {

                       SS[i].rc=SS[i-].rc;

                               count++;

                   }

                 else

                     {

                        SS[i].rc=SS[i-].rc+count;

                         count=;

                     }

          }

             sort(SS,SS+n,cmp3);

          count=;

          for(i=;i<n;i++)

          {

              if(SS[i].M==SS[i-].M)

                   {

                       SS[i].rm=SS[i-].rm;

                               count++;

                   }

                 else

                     {

                        SS[i].rm=SS[i-].rm+count;

                         count=;

                     }

          }

             sort(SS,SS+n,cmp4);

          count=;

          for(i=;i<n;i++)

          {

              if(SS[i].E==SS[i-].E)

                   {

                       SS[i].re=SS[i-].re;

                               count++;

                   }

                 else

                     {

                        SS[i].re=SS[i-].re+count;

                         count=;

                     }

          }

               for(i=;i<m;i++)

          {

                   string goal;int j;

               cin>>goal;

                   for(j=;j<n;j++)

                         if(SS[j].ID==goal) break;

           if(j==n) cout<<"N/A"<<endl;

             else{           

                   char high='E';

                   int temp=SS[j].re;

                   if(temp>=SS[j].rm)

                   {

                      high='M';

                      temp=SS[j].rm;

                   }

                   if(temp>=SS[j].rc)

                   {

                      high='C';

                      temp=SS[j].rc;

                   }

                   if(temp>=SS[j].ra)

                   {

                      high='A';

                      temp=SS[j].ra;

                   }

                   cout<<temp<<" "<<high<<endl;

             }

          }

       }

   return ;

 }

The Best Rank (25)(排名算法)的更多相关文章

  1. 在MySQL中实现Rank高级排名函数【转】

    MySQL中没有Rank排名函数,当我们需要查询排名时,只能使用MySQL数据库中的基本查询语句来查询普通排名.尽管如此,可不要小瞧基础而简单的查询语句,我们可以利用其来达到Rank函数一样的高级排名 ...

  2. 在MySQL中实现Rank高级排名函数

    MySQL中没有Rank排名函数,当我们需要查询排名时,只能使用MySQL数据库中的基本查询语句来查询普通排名.尽管如此,可不要小瞧基础而简单的查询语句,我们可以利用其来达到Rank函数一样的高级排名 ...

  3. PAT甲 1012. The Best Rank (25) 2016-09-09 23:09 28人阅读 评论(0) 收藏

    1012. The Best Rank (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue To eval ...

  4. pat1012. The Best Rank (25)

    1012. The Best Rank (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue To eval ...

  5. A1012 The Best Rank (25)(25 分)

    A1012 The Best Rank (25)(25 分) To evaluate the performance of our first year CS majored students, we ...

  6. flink PageRank详解(批量迭代的页面排名算法的基本实现)

    1.PageRank算法原理   2.基本数据准备 /** * numPages缺省15个测试页面 * * EDGES表示从一个pageId指向相连的另外一个pageId */ public clas ...

  7. 1012 The Best Rank (25分) vector与结构体排序

    1012 The Best Rank (25分)   To evaluate the performance of our first year CS majored students, we con ...

  8. 网页排名算法PagaRank

    网页排名算法PageRank PageRank,网页排名,又叫做网页级别.是一种利用网页之间的超链接数据进行计算的方法.它是由Google的两位创始人提出的. 对于用户而言,网页排名一般是比较主观的, ...

  9. 2015最新百度搜索引擎(seo优化)排名算法

    多少年来,对于弄清百度排名算法成为了一代又一代站长的最高目标.随着百度推出了搜索引擎网页质量**,直接揭开了神秘的百度排名算法,这是作为站长福音啊.现在小编就来为大家介绍一下. 首先想要得到直接需要的 ...

  10. 转:Reddit排名算法工作原理

    http://www.aqee.net/how-reddit-ranking-algorithms-work/ 这是一篇继<Hacker News 排名算法工作原理>之后的又一篇关于排名算 ...

随机推荐

  1. 观察者模式(二)--《Head First DesignPattern》

    我们用Java中自带的观察者模式接口来重写前面的例子. 先看一下类图: 这里用到了一个setChanged函数,它用来标记状态已经改变的事实,好让notifyObservers()知道当它调用时就应该 ...

  2. 实现JavaScript的组成----BOM和DOM

    我们知道,一个完整的JavaScript的实现,需要由三部分组成:ECMAScript(核心),BOM(浏览器对象模型),DOM(文档对象模型). 今天主要学习BOM和DOM. BOM: BOM提供了 ...

  3. javaweb学习总结十八(软件密码学、配置tomcat的https连接器以及tomcat管理平台)

    一:软件密码学 1:对称加密 对称加密是最快速.最简单的一种加密方式,加密(encryption)与解密(decryption)用的是同样的密钥(secret key).对称加密有很多种算法,由于它效 ...

  4. cent0s7 显卡驱动导致重启黑屏

    由于 CentOS7.0 版本与前面的 CentOS6.5 及之前的版本的模式变更方法有很大 的不同,以前的版本中我们可以在vi /etc/inittab 文件中将id:5:initdefault 更 ...

  5. 通过Jquery中Ajax获取json文件数据

    1. JSON(JavaScript Object Notation): javaScript对象表示法: 是存储和交换文本信息的语法,比xml更小,更快,更易解析. 2. JSON基本书写格式 : ...

  6. %r与%s的区别

    %r用rper()方法处理对象 %s用str()方法处理对象 有些情况下,两者处理的结果是一样的,比如说处理int型对象. 例一: print "I am %d years old.&quo ...

  7. Memcached学习(三)

    通过Java客户端实现与Memcached的交互,Java客户端的实现了使用了开源的Memcached-Java-Client,开源地址在GitHub上. 如下是通过该开源库实现的Memcached交 ...

  8. Excel Operation

    在日常工作中, 常常需要收集统计一些数据, 然后整理到excel, 这种重复性的操作可以自己写个工具来实现. 采用HtmlUnitDriver 访问页面, 抓取数据, 再把数据列表通过调用POI放到e ...

  9. 相似度到大数据查找之Mysql 文章匹配的一些思路与提高查询速度

    文章相关度匹配的一些思路---"压缩"预料库,即提取用特征词或词频,量化后以“列向量”形式保存到数据库:按前N组词拼为向量组供查询使用,即组合为1到N字的组合,量化后以“行向量”形 ...

  10. 函数 resize和reserve的区别

    reserve是容器预留空间,但在空间内不真正创建元素对象,所以在没有添加新的对象之前,不能引用容器内的元素.加入新的元素时,要调用push_back()/insert()函数. resize是改变容 ...