前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDUOJ----(1031)Design T-Shirt

HDUOJ----(1031)Design T-Shirt

作者头像
Gxjun
发布2018-03-21 13:18:24
5590
发布2018-03-21 13:18:24
举报
文章被收录于专栏:ml

Design T-Shirt

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4370    Accepted Submission(s): 2124

Problem Description

Soon after he decided to design a T-shirt for our Algorithm Board on Free-City BBS, XKA found that he was trapped by all kinds of suggestions from everyone on the board. It is indeed a mission-impossible to have everybody perfectly satisfied. So he took a poll to collect people's opinions. Here are what he obtained: N people voted for M design elements (such as the ACM-ICPC logo, big names in computer science, well-known graphs, etc.). Everyone assigned each element a number of satisfaction. However, XKA can only put K (<=M) elements into his design. He needs you to pick for him the K elements such that the total number of satisfaction is maximized.

Input

The input consists of multiple test cases. For each case, the first line contains three positive integers N, M and K where N is the number of people, M is the number of design elements, and K is the number of elements XKA will put into his design. Then N lines follow, each contains M numbers. The j-th number in the i-th line represents the i-th person's satisfaction on the j-th element.

Output

For each test case, print in one line the indices of the K elements you would suggest XKA to take into consideration so that the total number of satisfaction is maximized. If there are more than one solutions, you must output the one with minimal indices. The indices start from 1 and must be printed in non-increasing order. There must be exactly one space between two adjacent indices, and no extra space at the end of the line.

Sample Input

3 6 4

2 2.5 5 1 3 4

5 1 3.5 2 2 2

1 1 1 1 1 10

3 3 2

1 2 3

2 3 1

3 1 2

Sample Output

6 5 3 1

2 1

Author

CHEN, Yue

Source

CYJJ's Funny Contest #1, Killing in Seconds

Recommend

几次排序就可以ac掉...没啥技术...水体

代码:

代码语言:javascript
复制
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<climits>
 5 #include<cstdlib>
 6 #include<algorithm>
 7 #include<vector>
 8 using namespace std;
 9 
10 typedef struct Nod
11 {
12     int num;
13     float value;
14 }nod;
15   /*二级排序*/
16 int cmp(nod a,nod b)
17 {
18     if(a.value==b.value)
19     {
20         return a.num<b.num;  //小到大
21     }
22     else
23         return a.value>b.value;  //降序大到小
24 }
25 
26 int Less(int a,int b)
27 {
28     return a>b; //降序大到小
29 }
30 int main()
31 {
32     int n,m,k,i;
33     float cnt;
34     while(scanf("%d %d %d",&n,&m,&k)!=EOF)
35     {
36       vector<nod>start(m);
37       vector<int>ans(k);
38       /*初始化*/
39       for(i=0;i<m;i++)
40       {
41           scanf("%f",&start[i].value);
42           start[i].num=i+1;
43       }
44       n--;
45       while(n--)
46       {
47        for(i=0;i<m;i++)
48        {
49           scanf("%f",&cnt);
50           start[i].value+=cnt;
51        }
52       }
53       sort(start.begin(),start.end(),cmp);
54       for(i=0;i<k;i++)
55       {
56         ans[i]=start[i].num;
57       }
58       sort(ans.begin(),ans.end(),Less);
59       printf("%d",ans[0]);
60       for(i=1;i<k;i++)
61       {
62       printf(" %d",ans[i]);
63       }
64       putchar(10);
65     }
66     return 0;
67 }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2013-10-27 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Design T-Shirt
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档