codeforces-2A Winner

題意:根據(jù)輸入的分?jǐn)?shù),打印分?jǐn)?shù)最多的獲勝者抵蚊。如果最高分相同丹皱,則最先獲得最高分的為勝

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

typedef struct Node
{
    char c;
    struct Element *element;
    struct Node **next;
} Node;

struct Node *create_node(char c)
{
    struct Node *node = malloc(sizeof(struct Node));
    node->c = c;
    node->next = calloc(26, sizeof(struct Node));
    node->element = NULL;
    return node;
}

void destroy_node(struct Node *node)
{
    int i;
    
    if(node == NULL)
    {
        return;
    }
    
    for(i=0; i<26; i++)
    {
        destroy_node(node->next[i]);
    }
    
    free(node->next);
    free(node);
    return;
}

typedef struct History
{
    int score;
    int turn;
    struct History * next;
} History;

struct History *create_history(int score, int turn)
{
    struct History *history = malloc(sizeof(struct History));
    history->score = score;
    history->turn = turn;
    return history;
}

void destroy_history(struct History *history)
{
    if (history->next != NULL) {
        destroy_history(history->next);
    }
    free(history);
}

typedef struct Element
{
    char name[33];
    int score;
    struct Element *next;
    struct History *history_curr;
    struct History *history_first;
} Element;

struct Element *create_element(char *name, int score)
{
    struct Element *element =(Element *)malloc(sizeof(struct Element));
    strncpy(element->name, name, 33);
    element->score = score;
    element->history_curr = NULL;
    element->history_first = NULL;
    return element;
}

void destroy_element(struct Element *element)
{
    if (element->next != NULL) {
        destroy_element(element->next);
    }
    free(element);
}

int main() {
    int n;
    
    scanf("%d", &n);
    getchar();
    
    
    struct Node *root = create_node('!');
    
    Element *first = NULL;
    Element *curr = NULL;
    Element *last = NULL;
    
    int turn = 0;
    
    while(n--) {
        
        struct Node *elem = root;
        
        int c;
        int score;
        char name[33];
        int i = 0;
        
        while ((c = getchar()) != ' ') {
            if (c == '\n') continue;
            name[i] = c;
            c -= 'a';
            if(elem->next[c] == NULL) {
                elem->next[c] = create_node(c);
            }
            elem = elem->next[c];
            i++;
        }
        name[i] = '\0';
        
        scanf("%d", &score);
        getchar();
        
        if (elem->element == NULL) {
            elem->element = create_element(name, 0);
            if (first == NULL) {
                first = elem->element;
                last = elem->element;
            } else {
                last->next = elem->element;
                last = last->next;
            }
        }
        curr = elem->element;
        
        curr->score += score;
        
        if (score >= 0) {
            History *ne = create_history(curr->score, turn);
            
            if (curr->history_first == NULL) {
                curr->history_first = ne;
            } else {
                curr->history_curr->next = ne;
            }
            
            curr->history_curr = ne;
        }
        
        turn++;
    }
    
    curr = first->next;
    
    Element *winner = first;
    
    int max_score = winner->score;
    
    while (curr != NULL) {
        if (winner->score < curr->score) {
            winner = curr;
            max_score = winner->score;
        } else {
            if (winner->score == curr->score) {
                int w_turn = turn;
                int c_turn = turn;
                
                History *hcurr = winner->history_first;
                while (hcurr != NULL) {
                    if (hcurr->score >= max_score && hcurr->turn < w_turn) {
                        w_turn = hcurr->turn;
                        break;
                    }
                    
                    hcurr = hcurr->next;
                }
                
                hcurr = curr->history_first;
                while (hcurr != NULL) {
                    if (hcurr->score >= max_score && hcurr->turn < c_turn) {
                        c_turn = hcurr->turn;
                        break;
                    }
                    
                    hcurr = hcurr->next;
                }
                
                if (c_turn < w_turn && curr->score == max_score) {
                    winner = curr;
                }
            }
        }
        curr = curr->next;
    }
    
    printf("%s", winner->name);
    
    destroy_element(first);
    destroy_node(root);
    
    return 0;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末享郊,一起剝皮案震驚了整個(gè)濱河市惧财,隨后出現(xiàn)的幾起案子巡扇,更是在濱河造成了極大的恐慌,老刑警劉巖垮衷,帶你破解...
    沈念sama閱讀 212,080評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件厅翔,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡搀突,警方通過查閱死者的電腦和手機(jī)知给,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,422評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來描姚,“玉大人,你說我怎么就攤上這事戈次⌒保” “怎么了?”我有些...
    開封第一講書人閱讀 157,630評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵份蝴,是天一觀的道長单鹿。 經(jīng)常有香客問我哥纫,道長,這世上最難降的妖魔是什么澄步? 我笑而不...
    開封第一講書人閱讀 56,554評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮和泌,結(jié)果婚禮上村缸,老公的妹妹穿的比我還像新娘。我一直安慰自己武氓,他們只是感情好梯皿,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,662評(píng)論 6 386
  • 文/花漫 我一把揭開白布仇箱。 她就那樣靜靜地躺著,像睡著了一般东羹。 火紅的嫁衣襯著肌膚如雪剂桥。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,856評(píng)論 1 290
  • 那天属提,我揣著相機(jī)與錄音权逗,去河邊找鬼。 笑死冤议,一個(gè)胖子當(dāng)著我的面吹牛斟薇,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播求类,決...
    沈念sama閱讀 39,014評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼奔垦,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了尸疆?” 一聲冷哼從身側(cè)響起椿猎,我...
    開封第一講書人閱讀 37,752評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎寿弱,沒想到半個(gè)月后犯眠,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,212評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡症革,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,541評(píng)論 2 327
  • 正文 我和宋清朗相戀三年筐咧,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片噪矛。...
    茶點(diǎn)故事閱讀 38,687評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡量蕊,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出艇挨,到底是詐尸還是另有隱情残炮,我是刑警寧澤,帶...
    沈念sama閱讀 34,347評(píng)論 4 331
  • 正文 年R本政府宣布缩滨,位于F島的核電站势就,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏脉漏。R本人自食惡果不足惜苞冯,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,973評(píng)論 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望侧巨。 院中可真熱鬧舅锄,春花似錦、人聲如沸司忱。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至禁添,卻和暖如春撮胧,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背老翘。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評(píng)論 1 266
  • 我被黑心中介騙來泰國打工芹啥, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人铺峭。 一個(gè)月前我還...
    沈念sama閱讀 46,406評(píng)論 2 360
  • 正文 我出身青樓墓怀,卻偏偏與公主長得像,于是被迫代替她去往敵國和親卫键。 傳聞我的和親對(duì)象是個(gè)殘疾皇子傀履,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,576評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容