单词搜索难题生成


13

给定一个字符串列表,找到包含每个初始字符串的最小平方矩阵。字符串可能会水平,垂直或对角线出现,并且会向前或向后出现,例如此问题“ 单词搜索难题”

单词应放置在正方形中,每个方向(水平,垂直和对角线)至少应包含一个单词。单词应该只出现一次。

因此,输入只是单词列表。例如:CAT, TRAIN, CUBE, BICYCLE。一种可能的解决方案是:

B N * * * * *
* I * * C A T
* A C * * * *
* R * Y * * C
* T * * C * U
* * * * * L B
* * * * * * E

为了清楚起见,我用星号替换了填充字母。所需的输出应包括随机填充字母。


是否必须只在一个位置上找到每个单词(例如典型的单词搜索)?例如,如果AC您的示例中的左侧字母为,则该字母将变为另一个字母。CATT
Geobits,2015年

我不清楚您所说的“ 单词应该在各个方向随机放置 ”到底是什么意思。如果确定性地排列了单词,然后随机选择正方形的八个对称之一,答案是否会满足该标准?或者,在另一个极端,是否应该从包含单词的所有可能的最小平方中统一选择输出?还是在这些极端之间绘制了一条线?
彼得·泰勒

是的,只能在一个位置找到它。
Migue

1
不是,不是 我仍不清楚答案应该从哪个样本中随机抽取,也不清楚该加权元素具有多少灵活性。
彼得·泰勒

1
截至目前,该问题的输入无法解决,但是没有提及您应该如何处理。例如,该集合A B C D E F G H I J K L M N O P Q R S T U V W X Y Z没有解决方案。
orlp 2015年

Answers:


6

JavaScript的(ES6),595 628 680

编辑一些清理和合并:
-函数P在函数R中合并
-在同一.map中计算x和z-
找到解决方案后,将x设置为0退出外循环
-合并定义并调用W

Edit2更多打高尔夫球,缩短了随机填充,修改了外循环...请参阅历史以获取更多可读性

与公认的答案不同,这应该适用于大多数输入。只是避免单字母单词。如果找到输出,则使用所有3个方向都是最佳的。

避免重复单词的约束非常困难。我必须在将单词添加到网格的每个步骤以及每个随机填充字符处寻找重复的单词。

主要子功能:

  • P(w)如果回文词为真。检查重复的单词时,会发现两次palindrom单词。

  • R(s)检查网格s上的重复单词

  • Q(s)用随机字符填充网格-它是递归的,在重复单词的情况下会回溯-可能会失败。

  • W()递归,如果可能,尝试填充给定大小的网格。

主函数使用W()查找输出网格,从输入中最长单词的大小到所有单词长度的总和进行尝试。

F=l=>{
  for(z=Math.max(...l.map(w=>(w=w.length,x+=w,w),x=0));
      ++z<=x;
      (W=(k,s,m,w=l[k])=>w?s.some((a,p)=>!!a&&
            D.some((d,j,_,r=[...s],q=p-d)=>
              [...w].every(c=>r[q+=d]==c?c:r[q]==1?r[q]=c:0)
              &&R(r)&&W(k+1,r,m|1<<(j/2))
            )
          )
        :m>12&&Q(s)&&(console.log(''+s),z=x) 
      )(0,[...Array(z*z-z)+99].map((c,i)=>i%z?1:'\n'))
    )
    D=[~z,-~z,1-z,z-1,z,-z,1,-1]
    ,R=u=>!l.some(w=>u.map((a,p)=>a==w[0]&&D.map(d=>n+=[...w].every(c=>u[q+=d]==c,q=p-d)),
      n=~([...w]+''==[...w].reverse()))&&n>0)
    ,Q=(u,p=u.indexOf(1),r=[...'ABCDEFGHIJHLMNOPQRSTUVWXYZ'])=>
      ~p?r.some((v,c)=>(r[u[p]=r[j=0|c+Math.random()*(26-c)],j]=v,R(u)&&Q(u)))||(u[p]=1):1
    //,Q=u=>u.map((c,i,u)=>u[i]=c!=1?c:' ') // uncomment to avoid random fill
}

脱节和解释(不完整,对不起,这是很多工作)

F=l=>
{
  var x, z, s, q, D, R, Q, W;
  // length of longest word in z
  z = Math.max( ... l.map(w => w.length))
  // sum of all words length in x
  x = 0;
  l.forEach(w => x += w.length);

  for(; ++z <= x; ) // test square size from z to x
  {
    // grid in s[], each row of len z + 1 newline as separator, plus leading and trailing newline
    // given z==offset between rows, total length of s is z*(z-1)+1
    // gridsize: 2, z:3, s.length: 7 
    // gridsize: 3, z:4, s.length: 13
    // ...
    // All empty, nonseparator cells, filled with 1, so
    // - valid cells have a truthy value (1 or string)
    // - invalid cells have falsy value ('\n' or undefined)
    s = Array(z*z-z+1).fill(1) 
    s = s.map((v,i) => i % z != 0 ? 1 : '\n');

    // offset for 8 directions 
    D = [z+1, -z-1, 1-z, z-1, z, -z, 1, -1]; // 4 diags, then 2 vertical, then 2 horizontal 

    // Function to check repeating words
    R = u => // return true if no repetition
      ! l.some( w => // for each word (exit early when true)
      {
          n = -1 -([...w]+''==[...w].reverse()); // counter starts at -1 or -2 if palindrome word
          u.forEach( (a, p) => // for each cell if grid 
          {
            if (a == [0]) // do check if cell == first letter of word, else next word
               D.forEach( d => // check all directions 
                 n += // word counter
                   [...w].every( c => // for each char in word, exit early if not equal
                     u[q += d] == c, // if word char == cell, continue to next cell using current offset
                     q = p-d  // starting position for cell
                   )
               ) // end for each direction
          } ) // end for each cell
          return n > 0 // if n>0 the word was found more than once
      } ) // end for each word

    // Recursive function to fill empty space with random chars
    // each call add a single char
    Q = 
    ( u, 
      p = u.indexOf(1), // position of first remaining empty cell 
      r = [...'ABCDEFGHIJHLMNOPQRSTUVWXYZ'] // char array to be random shuffled
    ) => {
      if (~p) // proceed if p >= 0
        return r.some((v,c)=>(r[u[p]=r[j=0|c+Math.random()*(26-c)],j]=v,R(u)&&Q(u)))||(u[p]=1)
      else 
        return 1; // when p < 0, no more empty cells, return 1 as true
    }
    // Main working function, recursive fill of grid          
    W = 
    ( k, // current word position in list
      s, // grid
      m, // bitmask with all directions used so far (8 H, 4V, 2 or 1 diag)
      w = l[k] // get current word
    ) => {
      var res = false
      if (w) { // if current word exists
        res = s.some((a,p)=>!!a&&
            D.some((d,j,_,r=[...s],q=p-d)=>
              [...w].every(c=>r[q+=d]==c?c:r[q]==1?r[q]=c:0)
              &&R(r)&&W(k+1,r,m|1<<(j/2))
            )
          )
      } 
      else 
      { // word list completed, check additional constraints
        if (m > 12 // m == 13, 14 or 15, means all directions used
            && Q(s) ) // try to fill with random, proceed if ok
        { // solution found !!
          console.log(''+s) // output grid
          z = x // z = x to stop outer loop
          res = x//return value non zero to stop recursion
        }
      }
      return res
    };
    W(0,s)
  }    
}

在Firefox / FireBug控制台中测试

F(['TRAIN','CUBE','BOX','BICYCLE'])

,T,C,B,O,X,B,H,  
,H,R,U,H,L,I,H,  
,Y,A,A,B,E,C,B,  
,D,H,S,I,E,Y,I,  
,H,E,R,L,N,C,T,  
,G,S,T,Y,F,L,U,  
,H,U,Y,F,O,E,H,  

没有填充

,T,C,B,O,X,B, ,
, ,R,U, , ,I, ,
, , ,A,B, ,C, ,
, , , ,I,E,Y, ,
, , , , ,N,C, ,
, , , , , ,L, ,
, , , , , ,E, ,

F([[火车],'ARTS','RAT','立方体','盒子','自行车','暴风雨','脑','深度','嘴','板']

,T,A,R,C,S,T,H,
,S,R,R,L,U,D,T,
,T,B,A,T,N,B,P,
,O,B,O,I,S,A,E,
,R,B,A,X,N,H,D,
,M,R,M,O,U,T,H,
,B,I,C,Y,C,L,E,

F(['AA','AB','AC','AD','AE','AF','AG'])

,A,U,B,C,
,T,A,E,Z,
,C,D,O,F,
,Q,C,G,A,

F(['AA','AB','AC','AD','AE','AF'])

输出未填充 -@nathan:现在,您不能不重复就添加另一个A x。您将需要一个更大的网格。

,A, ,C,
, ,A,F,
,D,E,B,

在您的最后一个测试案例中,在3x3的网格中是不可能的吗?
内森·美林

@NathanMerrill号 在答复文件的更多细节
edc65

完全不可读的代码:),但是字节/点“授予”的缺点是,它不是人工编译器
firephil

1
@firephil试图添加一个解释,这并不容易...
edc65

1

C#

这是一个尚待完成的简单实现。有很多组合可以使尺寸最小。所以刚想到的最简单的算法。

class Tile
{
    public char C;
    public int X, Y;
}

class Grid
{
    List<Tile> tiles;

    public Grid()
    {
        tiles = new List<Tile>();
    }
    public int MaxX()
    {
        return tiles.Max(x => x.X);
    }
    public int MaxY()
    {
        return tiles.Max(x => x.Y);
    }
    public void AddWords(List<string> list)
    {
        int n = list.Count;
        for (int i = 0; i < n; i++)
        {
            string s = list[i];
            if(i==0)
            {
                Vert(s, 0, 0);
            }
            else if(i==n-1)
            {
                int my = MaxY();
                Diag(s, 0, my+1);
            }
            else
            {
                Horiz(s, 0, i);
            }
        }

    }
    private void Vert(string s, int x, int y)
    {
        for (int i = 0; i < s.Length; i++)
        {
            Tile t = new Tile();
            t.C = s[i];
            t.X = x+i;
            t.Y = y;
            tiles.Add(t);
        }
    }
    private void Horiz(string s, int x, int y)
    {
        for (int i = 0; i < s.Length; i++)
        {
            Tile t = new Tile();
            t.C = s[i];
            t.X = x+i;
            t.Y = y;
            tiles.Add(t);
        }
    }
    private void Diag(string s, int x, int y)
    {
        for (int i = 0; i < s.Length; i++)
        {
            Tile t = new Tile();
            t.C = s[i];
            t.X = x++;
            t.Y = y++;
            tiles.Add(t);
        }
    }
    public void Print()
    {
        int mx = this.MaxX();
        int my = this.MaxY();
        int S = Math.Max(mx, my) + 1;
        char[,] grid = new char[S, S];
        Random r = new Random(DateTime.Now.Millisecond);
        //fill random chars
        for (int i = 0; i < S; i++)
        {
            for (int j = 0; j < S; j++)
            {
                grid[i, j] = (char)(r.Next() % 26 + 'A');
            }
        }
        //fill words
        tiles.ForEach(t => grid[t.X, t.Y] = t.C);
        //print
        for (int i = 0; i < S; i++)
        {
            for (int j = 0; j < S; j++)
            {
                Console.Write("{0} ", grid[i,j]);
            }
            Console.WriteLine();
        }
    }
}

class WordSearch
{
    public static void Generate(List<string>list)
    {
        list.Sort((x, y) =>
        { int s = 0; if (x.Length < y.Length)s = -1; else if (y.Length < x.Length)s = 1; return s; });
        list.Reverse();
        Grid g = new Grid();
        g.AddWords(list);
        g.Print();
    }

}

测试

class Program
{
    static void Main(string[] args)
    {
        string words = "CAT, TRAIN, CUBE, BICYCLE";
        string comma=",";
        List<string> w = words.Split(comma.ToArray()).ToList();
        List<string> t = new List<string>();
        foreach(string s in w)
        {
           t.Add(s.Trim());
        }
        WordSearch.Generate(t);

        Console.ReadKey();
    }
}

它有效,但不是最佳方法:样本字符串=“ CAT,DOG,HR,RUN,CMD”;
firephil

您是否检查随机填充字符是否导致网格中单词的重复?
edc65

-1尝试过。不遵守规格at least one word in each direction (horizontal, vertical and diagonal)。运行测试程序,无水平词(3垂直,1诊断)
edc65

3
这个问题是code-golf,所以您应该在标题中张贴多少字节,并且可能会使程序缩短一堆。谢谢。
mbomb007'3

@ edc65它做一个垂直,一个对角线,所有其他水平。正如我评论的那样,要获得完美的解决方案,将需要大量的组合来检查以及问题的规格。
bacchusbeale
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.