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

SGU 163.Wise King

时间:2014-08-11 17:42:32      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:style   blog   os   io   strong   for   div   line   

一道题目长的水题。。。。

总结就一句话,给出n个(-3~3)的数,一个数m,取任意个数是使这些数的m次幂之和最大。

 

 

 

code

 

#include <iostream>
#include <cmath>
using namespace std;
int n, m, x;
int g[7];
int main() {
	cin >> n >> m;
	for (int i = 1; i <= n; i++) cin >> x, g[x + 3]++;
	int ans = 0;
	for (int i = 0; i <= 6; i++) {
		int tem = int (pow (i - 3, m) );
		if (tem > 0) ans += tem*g[i];
	}
	cout<<ans;
	return 0;
}

 

  

 

SGU 163.Wise King,布布扣,bubuko.com

SGU 163.Wise King

标签:style   blog   os   io   strong   for   div   line   

原文地址:http://www.cnblogs.com/keam37/p/3905069.html

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