PAT Judge
原题连接: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≤104), the total number of users, KKK (≤5\le 5≤5), the total number of problems, and MMM (≤105\le 10^5≤105), 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的更多相关文章
- PAT 1075 PAT Judge[比较]
1075 PAT Judge (25 分) The ranklist of PAT is generated from the status list, which shows the scores ...
- A1075 PAT Judge (25)(25 分)
A1075 PAT Judge (25)(25 分) The ranklist of PAT is generated from the status list, which shows the sc ...
- 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 ...
- PAT 甲级 1075 PAT Judge (25分)(较简单,注意细节)
1075 PAT Judge (25分) The ranklist of PAT is generated from the status list, which shows the scores ...
- PAT_A1075#PAT Judge
Source: PAT A1075 PAT Judge (25 分) Description: The ranklist of PAT is generated from the status lis ...
- 10-排序5 PAT Judge
用了冒泡和插入排序 果然没有什么本质区别..都是运行超时 用库函数sort也超时 The ranklist of PAT is generated from the status list, whic ...
- PAT 1075. PAT Judge (25)
题目地址:http://pat.zju.edu.cn/contests/pat-a-practise/1075 此题主要考察细节的处理,和对于题目要求的正确理解,另外就是相同的总分相同的排名的处理一定 ...
- PAT A1075 PAT Judge (25 分)——结构体初始化,排序
The ranklist of PAT is generated from the status list, which shows the scores of the submissions. Th ...
- A1075. PAT Judge
The ranklist of PAT is generated from the status list, which shows the scores of the submittions. Th ...
随机推荐
- Selenium使用
定位 1.普通 by id, name,class_name,link_text 2.加强 xpath css
- HP网络打印机--如何添加打印机
HP网络打印机采用web服务形式,应添加打印机-通过Internet的打印机--填写网址http://192.168.1.10:80(从其他win7电脑-计算机-网络-网络设备中双击添加打印机,然后在 ...
- 求一个区间[a,b]中数字1出现的次数
问题来源:http://ac.jobdu.com/problem.php?pid=1373 举例:如果n=10 那么1-10之间的1的个数是2(1,2,3,4,...10) 这其中有一个规律: 挨着看 ...
- mui学习记录
1.页面间传值 2.mui如何增加自定义icon图标 http://ask.dcloud.net.cn/article/128 3.设计基于HTML5的APP登录功能及安全调用接口的方式(原理篇) h ...
- from表单如果未指定action,submit提交时候会执行当前url
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding= ...
- Werkzeug工具包学习-官方例子Shortly分析
为了学习werkzeug的wsgi框架工具,今天真对官网的例子进行调试运行.涉及到了werkzeug工具包,jinja2前端模版,以及redis内存库,之后可以灵活定制自己主页.再次,作以记录. 首先 ...
- 感知机(perceptron)概念与实现
感知机(perceptron) 模型: 简答的说由输入空间(特征空间)到输出空间的如下函数: \[f(x)=sign(w\cdot x+b)\] 称为感知机,其中,\(w\)和\(b\)表示的是感知机 ...
- JS实现常用排序算法—经典的轮子值得再造
关于排序算法的博客何止千千万了,也不多一个轮子,那我就斗胆粗制滥造个轮子吧!下面的排序算法未作说明默认是从小到大排序. 1.快速排序2.归并排序3.冒泡排序4.选择排序(简单选择排序)5.插入排序(直 ...
- NetMQ(一):zeromq简介
ZeroMQ系列 之NetMQ 一:zeromq简介 二:NetMQ 请求响应模式 Request-Reply 三:NetMQ 发布订阅模式 Publisher-Subscriber 四:NetMQ ...
- local variable 'r' referenced before assignment
这个错误是说r在使用前没有定义 def cateToNum(c): if c == 'M PRO': r = 1 if c == 'F PRO': r = 2 if c == 'M PREMIER': ...