My code for the pratice. It seems been written very disorder...., but pass the test. and only got 97 points.
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
class BinaryCode
{
vector<string> vsRet;
public:
vector<string> decode(string message);
};
vector<string> BinaryCode::decode(string message)
{
string::iterator ib,ie;
char ch;
bool b_p0error = false, b_p1error =false;
string p0(message.size(),'0'), p1(message.size(), '0');
p1[0] = '1';
p0[1] = message[0] - p0[0] + 0x30;
p1[1] = message[0] - p1[0] + 0x30;
if (message[0]>'1') b_p0error = true;
if (message[0]>'2') b_p1error = true;
for (int i=1; i<message.size()-1; i++)
{
ch = message[i] - p0[i-1] + 0x30 - p0[i] + 0x30;
if(ch >= '1')
{
if(ch == '1')
{
p0[i+1] = '1';
}
else
{
b_p0error = true;
}
}
ch = message[i] - p1[i-1] + 0x30 - p1[i] + 0x30;
if(ch >= '1')
{
if(ch == '1' )
{
p1[i+1] = '1';
}
else
{
b_p1error = true;
}
}
}
if((message[message.size()-1] - p0[message.size()-1] +0x30 - p0[message.size()-2] +0x30) > '0') b_p0error = true;;
if((message[message.size()-1] - p1[message.size()-1] +0x30 - p1[message.size()-2] +0x30) > '0') b_p1error = true;;
if(b_p0error) p0 = "NONE";
if(b_p1error) p1 = "NONE";
vsRet.push_back(p0);
vsRet.push_back(p1);
return vsRet;
};
int main()
{
BinaryCode bc;
string str1("22111");
bc.decode(str1);
return 0;
}
Problem Statement |
|||||||||||||
Let's say you have a binary string such as the following: 011100011 One way to encrypt this string is to add to each digit the sum of its adjacent digits. For example, the above string would become: 123210122 In particular, if P is the original string, and Q is the encrypted string, then Q[i] = P[i-1] + P[i] + P[i+1] for all digit positions i. Characters off the left and right edges of the string are treated as zeroes. An encrypted string given to you in this format can be decoded as follows (using 123210122 as an example):
Now we repeat the process, assuming the opposite about P[0]:
Note that this algorithm produces at most two decodings for any given encrypted string. There can never be more than one possible way to decode a string once the first binary digit is set. Given a string message, containing the encrypted string, return a vector <string> with exactly two elements. The first element should contain the decrypted string assuming the first character is '0'; the second element should assume the first character is '1'. If one of the tests fails, return the string "NONE" in its place. For the above example, you should return {"011100011", "NONE"}. |
|||||||||||||
Definition |
|||||||||||||
|
|||||||||||||
Constraints |
|||||||||||||
- | message will contain between 1 and 50 characters, inclusive. | ||||||||||||
- | Each character in message will be either '0', '1', '2', or '3'. | ||||||||||||
Examples |
|||||||||||||
0) | |||||||||||||
|
|||||||||||||
1) | |||||||||||||
|
|||||||||||||
2) | |||||||||||||
|
|||||||||||||
3) | |||||||||||||
|
|||||||||||||
4) | |||||||||||||
|
|||||||||||||
5) | |||||||||||||
|
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.