首页 > 其他 > 详细

POJ 3664

时间:2015-02-23 11:54:57      阅读:253      评论:0      收藏:0      [点我收藏+]

水水更健康

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>

using namespace std;
const int N=50100;

struct COW{
	int f,s,d;
}cows[N];

bool cmp1(COW a,COW b){
	if(a.f>b.f) return true;
	return false;
}

bool cmp2(COW a,COW b){
	if(a.s>b.s) return true;
	return false;
}

int n,k;

int main(){
	while(scanf("%d%d",&n,&k)!=EOF){
		for(int i=0;i<n;i++){
			scanf("%d%d",&cows[i].f,&cows[i].s);
			cows[i].d=i+1;
		}
		sort(cows,cows+n,cmp1);
		sort(cows,cows+k,cmp2);
		printf("%d\n",cows[0].d);
	}
	return 0;
}

  

POJ 3664

原文:http://www.cnblogs.com/jie-dcai/p/4297921.html

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