在迷宫中撞倒墙壁


10

规则:

在本游戏中,您从大小为N x M的矩形网格的顶部开始,该矩形网格由墙壁和开放空间组成。输入的是N行,每行M个字符,其中a .指定一个开放空间,a x指定一个墙。您的程序应输出最小的数字K,以使从左上角到右下角(无对角线)的路径跨越K壁。

例如,给定输入:

..x..
..x..
xxxxx
..x..
..x..

您的程序应输出2

其他例子:

输出4

xxxxx
x.x.x
x.x.x
x..xx

输出0

.xxxxxxxx
.x...x...
.x.x.x.x.
.x.x...x.
...xxxxx.

输出6

xx
xx
xx
xx
xx

额外花絮:

如果使您的生活更轻松,则可以将N和M指定为命令行参数。

如果可以让您的程序以某种形式打印出路径,则可以得到额外的奖励。


4
:yawn:Dijkstra,带有一个V [2] []和一个计数器的堆。
彼得·泰勒

4
@Peter Taylor但是您能编写多短的代码?
migimaru 2011年

Answers:


3

红宝石1.9 (235) (225) (222)(214)

我不知道这是否比基于Dijkstra的程序短,但我认为我会尝试另一种方法。这在循环中使用正则表达式来标记每个空间,并以达到该空间所需的最小墙数进行标记。

w=".{#{/\s/=~s=$<.read}}?"
j="([.x])"
s[0]=v=s[0]<?x??0:?1
(d=v[-1];n=v.succ![-1]
0while(s.sub!(/#{j}(#{w+d})/m){($1<?x?d: n)+$2}||s.sub!(/(#{d+w})#{j}/m){$1+($2<?x?d: n)}))while/#{j}/=~q=s[-2]
p v.to_i-(q==n ?0:1)

在命令行上将输入指定为文件,即

> ruby1.9.1 golf.rb maze.txt

取消高尔夫:

# read in the file
maze = $<.read

# find the first newline (the width of the maze)
width = /\s/ =~ maze

# construct part of the regex (the part between the current cell and the target cell)
spaces = ".{#{width}}?"

# construct another part of the regex (the target cell)
target = "([.x])"

# set the value of the first cell, and store that in the current wall count
maze[0] = walls = (maze[0] == "x" ? "1" : "0")

# loop until the goal cell is not "." or "x"
while /#{target}/ =~ (goal = s[-2])

  # store the current wall count digit and the next wall count digit, while incrementing the wall count
  current = walls[-1]; next = walls.succ![-1]

  # loop to set all the reachable cells for the current wall count
  begin

    # first regex handles all cells above or to the left of cells with the current wall count
    result = s.sub!(/#{target}(#{spaces + current})/m) {
      ($1 == 'x' ? next : current) + $2
    }

    # second regex handles all cells below or to the right of cells with the current wall count
    result = result || s.sub!(/(#{current + spaces})#{target}/m) {
      $1 + ($2 == 'x' ? next : current)
    }
  end while result != nil
end

# we reached the goal, so output the wall count if the goal was a wall, or subtract 1 if it wasn't
puts walls.to_i - (goal == next ? 0 : 1)

2

Perl 5.10(164)

undef$/;$_=<>;/\n/;$s="(.{$-[0]})?";substr$_,0,1,($n=/^x/||0);
until(/\d$/){1while s/([.x])($s$n)/$n+($1eq x).$2/se
+s/$n$s\K[.x]/$n+($&eq x)/se;$n++}
/.$/;print"$&\n"

与migimaru的解决方案非常相似,只有额外的Perl接触。5.10是需要\Ks///


这样是否可以正确处理需要穿过9面以上墙壁的迷宫?
migimaru 2011年

@migimaru不。我可以将字符增加到不超过45个左右,而增加一个小数目最多可以增加到几乎无限的数量-但这不会那么漂亮。
hobbs

2

蟒蛇406 378 360 348 418个字符

import sys
d={}
n=0
for l in open(sys.argv[1]):
 i=0
 for c in l.strip():m=n,i;d[m]=c;i+=1
 n+=1
v=d[0,0]=int(d[0,0]=='x')
X=lambda *x:type(d.get(x,'.'))!=str and x
N=lambda x,y:X(x+1,y)or X(x-1,y)or X(x,y+1)or X(x,y-1)
def T(f):s=[(x,(v,N(*x))) for x in d if d[x]==f and N(*x)];d.update(s);return s
while 1:
 while T('.'):pass
 v+=1
 if not T('x'):break
P=[m]
s,p=d[m]
while p!=(0,0):P.insert(0,p);x,p=d[p]
print s, P

简化的Dijkstra,因为随着重量的移动都在x场上。这是通过“波浪”完成的,首先循环查找.与前方接触的田野并将其设置为相同的权重,而不是一次查找x与前方接触的田野并将其设置为+1体重。在没有其他未访问字段的情况下重复此操作。

最后,我们知道每个领域的权重。

在命令行上将输入指定为文件:

python m.py m1.txt

更新:打印路径。


1

C ++版本(610 607 606 584)

#include<queue>
#include<set>
#include<string>
#include<iostream>
#include<memory>
#define S second
#define X s.S.first
#define Y s.S.S
#define A(x,y) f.push(make_pair(s.first-c,make_pair(X+x,Y+y)));
#define T typedef pair<int
using namespace std;T,int>P;T,P>Q;string l;vector<string>b;priority_queue<Q>f;set<P>g;Q s;int m,n,c=0;int main(){cin>>m>>n;getline(cin,l);while(getline(cin,l))b.push_back(l);A(0,0)while(!f.empty()){s=f.top();f.pop();if(X>=0&&X<=m&&Y>=0&&Y<=n&&g.find(s.S)==g.end()){g.insert(s.S);c=b[X][Y]=='x';if(X==m&&Y==n)cout<<-(s.first-c);A(1,0)A(-1,0)A(0,1)A(0,-1)}}}

实现Dijkstra的算法。

未打高尔夫球:

#include<queue>
#include<set>
#include<string>
#include<iostream>
#include<memory>

using namespace std;
typedef pair<int,int>P;
typedef pair<int,P>Q;

int main()
{
    int             m,n;
    string          line;
    vector<string>  board;

    cin >> m >> n;getline(cin,l);
    while(getline(cin,line))
    {
        board.push_back(line);
    }

    priority_queue<Q>   frontList;
    set<P>              found;
    frontList.push(make_pair(0,make_pair(0,0)));
    while(!frontList.empty())
    {
        Q s=frontList.top();
        frontList.pop();
        if(   s.second.first>=0
           && s.second.first<=m
           && s.second.second>=0
           && s.second.second<=n
           && found.find(s.second)==found.end()
        )
        {
            found.insert(s.second);
            int c=board[s.second.first][s.second.second]=='x';
            if(  s.second.first==m
              && s.second.second==n
            )
            {   cout<<-(s.first-c);
            }
            frontList.push(make_pair(s.first-c,make_pair(s.second.first+1,s.second.second)));
            frontList.push(make_pair(s.first-c,make_pair(s.second.first-1,s.second.second)));
            frontList.push(make_pair(s.first-c,make_pair(s.second.first,s.second.second+1)));
            frontList.push(make_pair(s.first-c,make_pair(s.second.first,s.second.second-1)));
        }
    }
}
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.