首页 > 其他 > 详细

【poj解题】3664

时间:2014-01-27 22:44:53      阅读:466      评论:0      收藏:0      [点我收藏+]

简单,两次排序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
#define MAX 50000
 
struct Vote {
    int index;
    int a;   
    int b;
};
 
struct Vote candidates[MAX];
int N, K;
 
int cmp_1(const void * a, const void * b) {
    return ((struct Vote *)b)->a - ((struct Vote *)a)->a;    
}
int cmp_2(const void * a, const void * b) {
    return ((struct Vote *)b)->b - ((struct Vote *)a)->b;    
}
 
int pick() {
    qsort(candidates, N, sizeof(candidates[0]), cmp_1);
    qsort(candidates, K, sizeof(candidates[0]), cmp_2);
    return candidates[0].index;
}
 
int main() {
    int i;
    int res;
 
    scanf("%d%d", &N, &K);
    for(i = 0; i < N; i++) {
        scanf("%d%d", &candidates[i].a, &candidates[i].b);
        candidates[i].index = i + 1;
    }
     
    res = pick();
    printf("%d\n", res);
    return 0;
}

  

【poj解题】3664

原文:http://www.cnblogs.com/igloo1986/p/3535029.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!