【问题标题】:Guessing a word from random triplet alphabets [closed]从随机三元组字母中猜一个词[关闭]
【发布时间】:2014-11-28 17:37:47
【问题描述】:

我遇到了这个问题,但我还没有找到完整的解决方案。 (来源:http://www.careercup.com/question?id=5678056593162240

给定一个函数

getRandomTripplet()

从字符串中返回一个随机的三元组字母。你不 知道使用调用此函数的字符串,您必须正确 猜字符串。还给出了字符串的长度。

假设字符串是 helloworld,函数 getRandomTriplet 将 返回诸如

之类的东西

hlo hew wld owo

该函数保持字母的相对顺序。所以它会 永远不会回来

ohl 因为 h 在字符串中位于 o 之前。欠因为 w 在 e 之后

字符串是未知的,你只知道字符串的长度。

到目前为止,我的方法是运行 getRandomTripplet() 1000 次,然后通过获取出现次数最多的字符(概率 > 1/10)来查找重复字符。

我走对了吗?

感谢您的帮助。 干杯!

【问题讨论】:

  • 您使用的是 Java 还是 C++?
  • 两者都可以,但我更喜欢 Java

标签: java c++ string algorithm data-structures


【解决方案1】:

在未能产生概率解决方案后,我想出了这种似乎能产生正确结果的蛮力方法。对于某些字符串,总状态空间很大,但算法最终会收敛:)

这可能不是最有效的解决方案,但似乎确实可以解决问题。下面的代码可以优化很多,但作为一个例子应该就足够了。

#include <iostream>
#include <set>
#include <functional>

#include <boost/random/mersenne_twister.hpp>
#include <boost/random/uniform_int_distribution.hpp>

// the input string for the random generator
static const std::string input("hello_world");
// an "empty" character (something not present in the input string)
static const char empty = '?';
// a constant with the input length (the only known fact about the input in the algorithm)
static const unsigned length = input.length();

// randomization algorithm returning triplets
std::string randomTriplet() {
    static boost::random::mt19937 gen;
    static boost::random::uniform_int_distribution<> dist(0, input.length()-1);

    std::set<unsigned> indices;
    while(indices.size() < 3)
        indices.insert(dist(gen));

    std::string result;
    for(auto i : indices)
        result.push_back(input[i]);
    return result;
}

// runs a functor for all possible combinations of input triplet acc to the rules
void allCombinations(const std::string& triplet, const std::function<void(const std::string&)>& functor) {
    for(unsigned a=0;a<length-2;++a)
        for(unsigned b=a+1;b<length-1;++b)
            for(unsigned c=b+1;c<length;++c) {
                std::string tmp(length, empty);
                tmp[a] = triplet[0];
                tmp[b] = triplet[1];
                tmp[c] = triplet[2];

                functor(tmp);
            }
}

// tries to merge two strings, and returns an empty string if it is not possible
std::string putTogether(const std::string& first, const std::string& second) {
    std::string result(length, empty);

    for(unsigned a=0;a<length;++a)
        if((first[a] == empty) || (first[a] == second[a]))
            result[a] = second[a];
        else if(second[a] == empty)
            result[a] = first[a];
        else if(first[a] != second[a])
            return std::string();

    return result;
}

// run a single iteration on a set of input states and a triplet
std::set<std::string> iterate(const std::set<std::string>& states, const std::string& triplet) {
    std::set<std::string> result;

    // try all combinations on all states
    for(auto& s : states) {
        allCombinations(triplet, [&](const std::string& val) {
            // and if merge is possible, insert it into the result
            const std::string together = putTogether(s, val);
            if(!together.empty())
                result.insert(together);
        });
    };

    return result;
}

int main(int argc, char*argv[]) {
    // the current state space (all possible strings given the observations so far)
    std::set<std::string> states;

    // initialisation - take the first triplet and generate all combinations of this triplet
    allCombinations(randomTriplet(), [&](const std::string& val) { states.insert(val); });

    // iterate - the number of iterations is rather arbitrary. We cannot stop when the solution
    //   count is 1, because some input strings (like "hello world", where the double l and o 
    //   are the problem) don't have a unique solution
    for(unsigned a=0;a<10000;++a) {
        states = iterate(states, randomTriplet());
        std::cout << "\r" << "iteration #" << a << ", combinations count = " << states.size() << "   " << std::flush;

        // however, if we do find a single solution, we don't have to go on
        if(states.size() == 1)
            break;
    }
    std::cout << std::endl;

    // print them all
    for(const auto& i : states)
        std::cout << i << std::endl;

    return 0;
}

有趣的是,对于“hello_world”输入,输出是:

iteration #9999, combinations count = 6     
hello_world
helol_world
hlelo_world
hleol_world
lhelo_world
lheol_world

三个“l”和两个“o”字符会产生歧义,仅使用三个字符的观察方法无法确定。

【讨论】:

    猜你喜欢
    • 2011-09-30
    • 1970-01-01
    • 2013-10-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-05-03
    • 2017-10-25
    相关资源
    最近更新 更多