程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> printf-hdu 1236一直re,跪求解釋

printf-hdu 1236一直re,跪求解釋

編輯:編程綜合問答
hdu 1236一直re,跪求解釋

一直re,求大神解釋 題目:http://acm.hdu.edu.cn/showproblem.php?pid=1236

 #include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
struct student
{
    char kaohao[25];
    int score;
};
bool cmp(student x,student y)
{
    if(x.score!=y.score)return x.score>y.score;
    else return strcmp(x.kaohao,y.kaohao)<=0;
}
int main()
{
    int renshu,tishu,fenxian,ji;
    student a[1005];
    while(scanf("%d",&renshu) && renshu)
    {
        ji = 0;
        memset(a,0,sizeof(a));
        int count,tifen[25];
        scanf("%d%d",&tishu,&fenxian);
        for(int i = 1;i<=tishu;i++)
        {
            scanf("%d",&tifen[i]);
        }
        for(int i = 1;i<=renshu;i++)
        {
            getchar();
            scanf("%s%d",a[i].kaohao,&count);
            for(int j = 1;j<=count;j++)
            {
                int temp;
                scanf("%d",&temp);
                a[i].score += tifen[temp];
            }
            if(a[i].score>=fenxian)
                ji++;
        }
        sort(a+1,a+renshu+1,cmp);
        printf("%d\n",ji);
        for(int i = 1;;i++)
        {
            if(a[i].score<fenxian)
            {break;}
            else printf("%s %d\n",a[i].kaohao,a[i].score);
        }
    }
}

最佳回答:


最後輸出的時候,如果所有人都過線了,會造成數組越界的情況吧。
另外吐槽一下,這種中文拼音和英文單詞摻雜的寫法實在太喪病了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved