羽毛球

生活在别处

导航

<2008年12月>
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910

统计

留言簿(29)

随笔分类

随笔档案

文章分类

文章档案

搜索

最新评论

阅读排行榜

评论排行榜

Google™ Code Jam - 中国编程挑战赛模拟题二

 Google™ Code Jam - 中国编程挑战赛 http://www.topcoder.com/gcjc_zh

题目如下:

Problem Statement

     A square matrix is a grid of NxN numbers. For example, the following is a 3x3 matrix:
 4 3 5
 2 4 5
 0 1 9
One way to represent a matrix of numbers, each of which is between 0 and 9 inclusive, is as a row-major string. To generate the string, simply concatenate all of the elements from the first row followed by the second row and so on, without any spaces. For example, the above matrix would be represented as "435245019".

You will be given a square matrix as a row-major string. Your task is to convert it into a vector <string>, where each element represents one row of the original matrix. Element i of the vector <string> represents row i of the matrix. You should not include any spaces in your return. Hence, for the above string, you would return {"435","245","019"}. If the input does not represent a square matrix because the number of characters is not a perfect square, return an empty vector <string>, {}.

Definition

    
Class: MatrixTool
Method: convert
Parameters: string
Returns: vector <string>
Method signature: vector <string> convert(string s)
(be sure your method is public)
    

Constraints

- s will contain between 1 and 50 digits, inclusive.

Examples

0)
    
"435245019"
Returns: {"435", "245", "019" }
The example above.
1)
    
"9"
Returns: {"9" }
2)
    
"0123456789"
Returns: { }
This input has 10 digits, and 10 is not a perfect square.
3)
    
"3357002966366183191503444273807479559869883303524"
Returns: {"3357002", "9663661", "8319150", "3444273", "8074795", "5986988", "3303524" }

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 <string>
#include 
<vector>
#include 
<math.h>

using namespace std;

class MatrixTool
{
public:
    vector
<string> convert(string s);
}
;

vector
<string> MatrixTool::convert(string s)
{
    vector
<string> vecResult;

    
int iLength = s.length();
    
int iYinzi = (int)sqrt(iLength);
    
if (iYinzi * iYinzi != iLength)
    
{
        
return vecResult;
    }


    
int i = 0;
    
for (; i < iYinzi; i++)
    
{
        
string strTmp = s.substr(iYinzi*i, iYinzi);
        vecResult.push_back(strTmp);
    }

    
    
return vecResult;
}


模拟题比较简单。

posted on 2005-11-26 22:18 Michael 阅读(3499) 评论(2)  编辑 收藏

评论

# re: Google™ Code Jam - 中国编程挑战赛模拟题二 2005-11-28 10:59 look110

你的代码有问题!
如果是字符呢,如果大于50个字呢

# re: Google™ Code Jam - 中国编程挑战赛模拟题二 2005-11-29 12:58 Michael

Right. 检查一下会好些。

标题  
姓名  
主页
验证码 *
内容   
  登录  使用高级评论  Top
[使用Ctrl+Enter键可以直接提交]