TOPCODER--SRM615 div1 AmebaDiv1


Problem Statement
    
Monte-Carlo is an amoeba. Amoebas can feed on gel: whenever an amoeba encounters a piece of gel that is exactly as big as the amoeba, the amoeba will consume the gel and thus double its size.  Initially, the size of Monte-Carlo was some unknown positive integer. During its lifetime, Monte-Carlo encountered several gels and consumed the ones it could.  You are given a vector <int> X. The elements of X are the sizes of gels Monte-Carlo encountered, in chronological order.  Let S be the set of all possible final sizes of Monte-Carlo. Compute and return the number of positive integers that do not belong into S.
Definition
    
Class:
AmebaDiv1
Method:
count
Parameters:
vector <int>
Returns:
int
Method signature:
int count(vector <int> X)
(be sure your method is public)
Limits
    
Time limit (s):
2.000
Memory limit (MB):
256
Notes
-
It is possible to prove that the answer for any test case is finite and fits into a 32-bit signed integer type.
Constraints
-
X will contain between 1 and 200 integers, inclusive.
-
Each element of X will be between 1 and 1,000,000,000, inclusive.
Examples
0)

    
{3,2,1}
Returns: 2
Here are a few possibilities how Monte-Carlo's life could have looked like:
Monte-Carlo started with size 1, ignored gel #0, ignored gel #1, consumed gel #2 and thus reached size 2.
Monte-Carlo started with size 3, consumed gel #0 and thus reached size 6, and then ignored the next two gels (as they were too small).
Monte-Carlo started with size 47 and ignored all three gels.
All final sizes except for 1 and 3 are possible.
1)


    
{2,2,2,2,2,2,4,2,2,2}
Returns: 2
If Monte-Carlo starts with size 2, its life will look as follows: First, it will consume gel #0 and thus grow to 4. Later, after ignoring a few gels, Monte-Carlo will consume gel #6 (the one with size 4) and thus grow to 8.  It can be shown that for this X Monte-Carlo's final size can never be 2 or 4.
2)


    
{1,2,4,8,16,32,64,128,256,1024,2048}
Returns: 11


3)


    
{854,250,934,1000,281,250,281,467,854,562,934,1000,854,500,562}
Returns: 7


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.


完整代码:

#include <cstdlib>
#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <algorithm>

using namespace std;

map <int, int> flag;
class AmebaDiv1 {
public:
	int count(vector <int> a)
	{
		int half;
		int count = 0;
		vector <int>:: iterator halfIter;
		vector <int>:: iterator interger;
		for (vector <int> :: iterator iter = a.begin(); iter != a.end(); ++iter)
		{
			map <int, int>::iterator it = flag.find(*iter);
			if (it == flag.end())
			{
				if (*iter % 2)
					count++;
				else
				{
					half = *iter >> 1;
					halfIter = std::find(a.begin(), a.end(), half);
					if(halfIter == a.end())
						count++;
					else
					{
						interger = std::find(halfIter, a.end(), *iter);
						if(interger != a.end())
							count++;
					}
				}
				flag[*iter] = 1;      //being visited
			}
		}
		return count;
	}
};

分数很低,暂时记录一下。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值