码迷,mamicode.com
首页 > 其他好文 > 详细

poj 2497 Strategies 模拟水题

时间:2015-04-21 20:52:17      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:poj   算法   

水题,直接贴代码。

//poj 2497
//sep9
#include <iostream>
#include <algorithm>
using namespace std;
int a[32];
int main()
{
	int cases,c=0;
	scanf("%d",&cases);
	while(cases--){
		int tot,n;
		scanf("%d%d",&tot,&n);	
		int x2,y2,t;
		for(int i=0;i<n;++i)
			scanf("%d",&a[i]);
		x2=0,y2=0,t=0;
		sort(a,a+n);
		while(x2<n&&t+a[x2]<=tot){
			y2+=t+a[x2];		
			t+=a[x2];
			++x2;
		}
		printf("Scenario #%d:\nSteve wins with %d solved problems and a score of %d.\n\n",++c,x2,y2);
	}
	return 0;	
} 


poj 2497 Strategies 模拟水题

标签:poj   算法   

原文地址:http://blog.csdn.net/sepnine/article/details/45174509

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!