原题连接:https://pta.patest.cn/pta/test/16/exam/4/question/677

题目如下:

The ranklist of PAT is generated from the status list, which shows the scores of the submissions. This time you are supposed to generate the ranklist for PAT.

Input Specification:

Each input file contains one test case. For each case, the first line contains 3 positive integers, NNN (≤104\le 10^4≤10​4​​), the total number of users, KKK (≤5\le 5≤5), the total number of problems, and MMM (≤105\le 10^5≤10​5​​), the total number of submissions. It is then assumed that the user id's are 5-digit numbers from 00001 to NNN, and the problem id's are from 1 to KKK. The next line contains KKK positive integers p[i] (i=1, ..., KKK), where p[i] corresponds to the full mark of the i-th problem. Then MMM lines follow, each gives the information of a submission in the following format:

user_id problem_id partial_score_obtained

where partial_score_obtained is either −1-1−1 if the submission cannot even pass the compiler, or is an integer in the range [0, p[problem_id]]. All the numbers in a line are separated by a space.

Output Specification:

For each test case, you are supposed to output the ranklist in the following format:

rank user_id total_score s[1] ... s[K]

where rank is calculated according to the total_score, and all the users with the same total_score obtain the same rank; and s[i] is the partial score obtained for the i-th problem. If a user has never submitted a solution for a problem, then "-" must be printed at the corresponding position. If a user has submitted several solutions to solve one problem, then the highest score will be counted.

The ranklist must be printed in non-decreasing order of the ranks. For those who have the same rank, users must be sorted in nonincreasing order according to the number of perfectly solved problems. And if there is still a tie, then they must be printed in increasing order of their id's. For those who has never submitted any solution that can pass the compiler, or has never submitted any solution, they must NOT be shown on the ranklist. It is guaranteed that at least one user can be shown on the ranklist.

Sample Input:

7 4 20
20 25 25 30
00002 2 12
00007 4 17
00005 1 19
00007 2 25
00005 1 20
00002 2 2
00005 1 15
00001 1 18
00004 3 25
00002 2 25
00005 3 22
00006 4 -1
00001 2 18
00002 1 20
00004 1 15
00002 4 18
00001 3 4
00001 4 2
00005 2 -1
00004 2 0

Sample Output:

1 00002 63 20 25 - 18
2 00005 42 20 0 22 -
2 00007 42 - 25 - 17
2 00001 42 18 18 4 2
5 00004 40 15 0 25 -

__________________________________________________________________________________________________________________________
  这道题首先要对题意理解清楚,就是对输入的用户数据进行排序,分数高的先输出,如果分数相等,则比较完全正确的解答的数量,如果再相等,则按照序号升序输出;
另外输出的时候,要注意是编译未通过(即输入-1)和为提交任何题目的(需要做标记)不用输出。
  题目的核心在于排序,我是利用的c语言中的qsort.另外,对题目的逻辑分析和代码实现也是一个难点;最后,初始的用户序号要为最大,否则排序会有问题(在代码中
已经注释)导致最后一个测试会通不过。
  解答该题的时候也参考了其他博主的代码!
 #include<stdio.h>
#include<stdlib.h>
#define K 6
#define N 10001 typedef struct user{
int uuid;
int rank;
int total_score;
int p[K];
int perfectly_score;
int pass;
}User; User uu[N]; int cmp(const void *u1,const void *u2)
{
User *uu1=(User *)u1;
User *uu2=(User *)u2;
if (uu2->total_score>uu1->total_score)return ;
else if (uu2->total_score==uu1->total_score)
{
if (uu2->perfectly_score>uu1->perfectly_score)return ;
else if (uu2->perfectly_score==uu1->perfectly_score)return (uu1->uuid-uu2->uuid);
}
return -;
} int main()
{
int n,k,m,score[K]={};
int i,j,uuid,pro,sco;
scanf("%d %d %d",&n,&k,&m);
for (i=;i<=k;i++)scanf("%d",&score[i]);
/* 初始化 */
for (i=;i<n;i++)
{
uu[i].perfectly_score=;
uu[i].total_score=;
uu[i].pass=;
uu[i].uuid=N; //如果id不初始为最大,那么没有通过编译的会排在通过编译但得分为0的同学之前,
// 从而影响得分为0的同学的rank值
for (j=;j<=k;j++)
{
uu[i].p[j]=-;
}
}
/* 将每个用户解决的相应问题的相应最大得分进行纪录 */
for (i=;i<m;i++)
{
scanf("%d %d %d",&uuid ,&pro,&sco);
if (uu[uuid-].p[pro]<sco)uu[uuid-].p[pro]=sco;
}
/* 将数据进行整理 */
for (i=;i<n;i++)
{
int flag,total,perfect;
flag=total=perfect=;
for (j=;j<=k;j++)
{
if (uu[i].p[j]>=) //>=0 说明该用户有通过了编译的
{
flag=;
total+=uu[i].p[j];
if (uu[i].p[j]==score[j])perfect++;
}
}
if (flag)
{
uu[i].uuid=i+;
uu[i].perfectly_score=perfect;
uu[i].total_score=total;
uu[i].pass=;
}
} qsort(uu,n,sizeof(uu[]),cmp); uu[].rank=;
printf("%d %05d %d",uu[].rank,uu[].uuid,uu[].total_score);
for (j=;j<=k;j++)
{
if (uu[].p[j]>=)printf(" %d",uu[].p[j]);
else if (uu[].p[j]==-)printf(""); //单独处理-1,即没有通过编译得分为0
else printf(" -"); // 没有提交输出 -
}
printf("\n"); for (i=;i<n;i++)
{
if (uu[i].pass> ){
if (uu[i].total_score==uu[i-].total_score)uu[i].rank=uu[i-].rank;
else uu[i].rank=i+; // 注意是i+1
printf("%d %05d %d",uu[i].rank,uu[i].uuid,uu[i].total_score);
for (j=;j<=k;j++)
{
if (uu[i].p[j]>=)printf(" %d",uu[i].p[j]);
else if (uu[i].p[j]==-) printf("");
else printf(" -");
}
printf("\n");}
} return ;
}

  

PAT Judge的更多相关文章

  1. PAT 1075 PAT Judge[比较]

    1075 PAT Judge (25 分) The ranklist of PAT is generated from the status list, which shows the scores ...

  2. A1075 PAT Judge (25)(25 分)

    A1075 PAT Judge (25)(25 分) The ranklist of PAT is generated from the status list, which shows the sc ...

  3. PTA 10-排序5 PAT Judge (25分)

    题目地址 https://pta.patest.cn/pta/test/16/exam/4/question/677 5-15 PAT Judge   (25分) The ranklist of PA ...

  4. PAT 甲级 1075 PAT Judge (25分)(较简单,注意细节)

    1075 PAT Judge (25分)   The ranklist of PAT is generated from the status list, which shows the scores ...

  5. PAT_A1075#PAT Judge

    Source: PAT A1075 PAT Judge (25 分) Description: The ranklist of PAT is generated from the status lis ...

  6. 10-排序5 PAT Judge

    用了冒泡和插入排序 果然没有什么本质区别..都是运行超时 用库函数sort也超时 The ranklist of PAT is generated from the status list, whic ...

  7. PAT 1075. PAT Judge (25)

    题目地址:http://pat.zju.edu.cn/contests/pat-a-practise/1075 此题主要考察细节的处理,和对于题目要求的正确理解,另外就是相同的总分相同的排名的处理一定 ...

  8. PAT A1075 PAT Judge (25 分)——结构体初始化,排序

    The ranklist of PAT is generated from the status list, which shows the scores of the submissions. Th ...

  9. A1075. PAT Judge

    The ranklist of PAT is generated from the status list, which shows the scores of the submittions. Th ...

随机推荐

  1. git tag使用标记

    git跟其它版本控制系统一样,可以打标签(tag), 作用是标记一个点为一个版本号,如0.1.3, v0.1.7, ver_0.1.3.在程序开发到一个阶段后,我们需要打个标签,发布一个版本,标记的作 ...

  2. MVC 添加Area

    在MVC项目中经常会使用到Area来分开不同的模块让项目结构更加的清晰. 步骤如下: 项目 –> 添加 -> 区域 ( Area ) 输入 Admin 添加成功后 Area包含: 创建一个 ...

  3. MySQLFabric连接的编码问题

    今天解决的一个小问题.最终的解决方案很简单,主要是讲一下解决问题的思路. 测试人员在服务器上测试,页面提交的中文内容存入数据库中以后,是乱码. 开发人员在本机上测试,没有问题. 服务器上使用的是Mys ...

  4. Mittag-Leffler定理,Weierstrass因子分解定理和插值定理

    Mittag-Leffler定理    设$D\subset\mathbb C$为区域,而$\{a_{n}\}$为$D$中互不相同且无极限点的点列,那么对于任意给定的一列自然数$\{k_{n}\}$, ...

  5. 配置oozie4.10+hadoop2.5.2

    终于将这个神秘的寻象人 oozie 安装配置成功了,这个困扰我好几天, 当看到如下的画面, 我觉得值! 废话少说,看我如何编译和安装过程: (已经将hadoop2.5.2HA 的环境搭建起来了,hiv ...

  6. 当攻击者熟读兵法,Camouflage病毒实战演示暗度陈仓之计

    "明修栈道,暗度陈仓"的典故许多人都听说过,该典故出自楚汉争霸时期,刘邦意图进入关中,需要攻下关中咽喉之地--陈仓.韩信献出一计:表面上浩浩荡荡地修复通往陈仓的栈道以迷惑陈仓守将, ...

  7. mongodb防火墙配置

    http://ruby-china.org/topics/20128 https://docs.mongodb.com/manual/tutorial/configure-linux-iptables ...

  8. Cocos2d-x 生成真正的随机数

    关于随机数 cocos2d-x 定义了一个宏 CCRANDOM_0_1 生成的是 [0, 1] 之间的值 因此,要生成  [0-100] 之间的数    CCRANDOM_0_1 * 100 生成 [ ...

  9. eclipse优化设置

    1. Eclipse的控制台console有时候经常的跳出来,非常的烦人! 让它不经常的调出来,可以按下面的操作去掉它: windows  ->   preferences   ->  r ...

  10. WooCommerce插件设置教程之设置主页

    http://demo.themes4wp.com/documentation/homepage-setup/#videoimage-tutorial