旅行南瓜问题


23

背景:

杰克(Jack)是一个南瓜,每个万圣节都喜欢在南瓜地附近惊吓村庄的居民。但是,每年有人点燃蜡烛后,在蜡烛熄灭之前,他都有有限的时间惊吓所有人,因此无法惊吓更多的村民,因为没人能看到他。在过去的几年中,由于决策不力,他只能吓到少量村庄,但现在有了您的帮助,他将能够吓到尽可能多的村庄!

任务:

给定村庄位置列表和蜡烛寿命,输出杰克可访问的最大村庄数。您不必打印路径本身。

输入:

蜡烛的寿命和笛卡尔坐标系中的村庄位置列表。Jack起源的南瓜补丁始终为0,0。您可以按照自己的意愿格式化输入。为了简化Jack的动作,他只能水平,垂直或对角移动,这意味着他的蜡烛每移动一次将失去1或1.5(对角线需要更长的时间)生命单位。寿命小于或等于0时,蜡烛会烧坏。

输出:

一个整数,它等于蜡烛熄灭前Jack可以访问的最大村庄数。

规则:

这是,因此以字节为单位的最短代码获胜。不允许出现标准漏洞。

测试用例:

// Format [lifespan] [list of village coordinates] -> [maximum visit-able villages]

4 -1,0 1,0 2,0 3,0 4,0 5,0 -> 3
4 1,1 2,2 3,3 -> 2
5 1,1 2,1 3,1 4,1 5,0 5,1 -> 4

9
嘲笑标题
Luis Mendo

3
“简化杰克的动作”有点讽刺意味,现在要困难
得多

1
我认为,如果我没记错的话,您的第一种情况输出应为3
Numberknot

1
@Numberknot不,一旦一个村庄被吓到,他们不会因为同样的把戏而倒下,他只能一次吓到每个村庄。
Yodle

5
这是一个N-南瓜难题,因此通常很难找到最大的村庄数。有最多的村庄?
edc65

Answers:


9

果冻,30 29 27 25字节

_AṢæ..
0,0ṭṚç2\+\<S
Œ!ç€Ṁ

在线尝试!

显然,Jelly的点积只是忽略列表大小的不匹配,并且不会乘以另一个数组的多余元素,而只是添加它们。削减2个字节。

说明

_AṢæ..              Helper link to calculate distance. Arguments: a, b
_                     subtract the vertices from each other
 A                    take absolute values of axes
  Ṣ                   sort the axes
   æ..                dot product with [0.5]

0,0ṭṚç2\+\<S        Helper link to calculate max cities. Arguments: perm, max
0,0                   create pair [0,0]
   ṭ                  append that to the permutation
    Ṛ                 reverse the permutation (gets the [0,0] to the beginning)
     ç2\              find distances of each pair using the previous link
        +\            find all partial sums
          <           see if each sum was less than the max
           S          sum to count cases where it was

Œ!ç€Ṁ               Main link. Arguments: cities, max
Œ!                    get permutations of cities
  ç€                  find max cities for each permutation using the previous link
    Ṁ                 take the maximum

在评论中,OP要求管理多达1000个村庄。但是,任何产生并存储所有排列的答案都将失败,甚至15个村庄(约1300亿排列)都将失败
edc65 '16

@ edc65没有人说过,只要算法从理论上讲在给定的时间和内存的情况下就可以测试这么大的情况。(实际上可以解决
n≈1000的

好吧,不是1000,甚至是15?
edc65

@ edc65我找不到快速在Jelly中易于实现的算法。我可能会考虑用另一种语言来提供一种更有效的解决方案(例如Held-Karp)。顺便说一句,没有答案实际上使用快速算法。JS较好,但如果范围内有许多城市,则速度较慢。
PurkkaKoodari '16

5

Java 7 206 201字节

感谢@KevinCruijssen节省了5个字节

int f(float e,int[]a,int[]b){int x=0,y=0,c=0,d=0,t;float s;for(int i:a){s=(i!=x&b[c]==y)|(i==x&b[c]!=y)?Math.sqrt((t=i-x)*t+(t=b[c]-y)*t)*1:Math.abs(i-x)*1.5;d+=e-s>=0?1:0;e-=s;x=i;y=b[c++];}return d;}

不打高尔夫球

class Travellingpumpkin {

public static void main(String[] args) {

    System.out.println(f( 5 ,new int[] { 1,2,3,4,5,5 } , new int[] { 1,1,1,1,0,1 } ));

}
static int f( double e , int[]a , int[]b ) {
    int x = 0 , y = 0 , c = 0 , d = 0 , t;
    double s ;

    for ( int i : a ) {
    s = ( i != x & b[c] == y )|( i == x & b[c] != y )
         ? Math.sqrt( ( t = i - x ) * t + ( t = b[c] - y ) * t ) * 1
         : Math.abs( i - x ) * 1.5 ;


        d += e-s >= 0 ? 1 : 0 ;
        e -= s ;
        x = i ; y = b [ c++ ] ;
    }
    return d ;

}

   }

2
很好,擅长包含“ unolfed”形式。虽然如果您转过来,我认为代码审阅者不会称其为“虚假的”。;)
通配符

+1。打高尔夫球的一件事:您使用i-x两次b[c]-y,因此可以将其添加,t到int,然后使用:Math.sqrt((t=i-x)*t+(t=b[c]-y)*t)*1代替Math.sqrt((i-x)*(i-x)+(b[c]-y)*(b[c]-y))*1
凯文·克鲁伊森

在一般情况下,这怎么可能起作用?
edc65

3

Scala,196个字节

def f(l:Int,c:(Int,Int)*)=c.permutations.map(x=>((0,0)+:x sliding 2 map{p=>val Seq(c,d)=Seq((p(0)._1-p(1)._1)abs,(p(0)._2-p(1)._2)abs).sorted
c*1.5+(d-c)}scanLeft 0d)(_+_)takeWhile(_<l)size).max-1

取消高尔夫:

def g (l: Int, c: (Int, Int)*) = {
    c.permutations
    .map { x =>
        ((0, 0) +: x).sliding(2).map({ p =>
            val Seq(c, d) = Seq((p(0)._1 - p(1)._1) abs, (p(0)._2 - p(1)._2) abs).sorted
            c * 1.5 + (d - c)
        }).scanLeft(0d)(_ + _).takeWhile(_ < l).size
    }.max - 1
}

说明:

def f(l:Int,c:(Int,Int)*)= //defien a function with an int and a vararg-int-pait parameter
  c.permutations           //get the permutations of c, that is all possible routes
  .map(x=>                 //map each of them to...
    ((0,0)+:x                //prepend (0,0)
    sliding 2                //convert to a sequence of consecutive elemtens
    map{p=>                  //and map each of them to their distance:
      val Seq(c,d)=Seq(        //create a sequence of
        (p(0)._1-p(1)._1)abs,  //of the absolute distance between the x points
        (p(0)._2-p(1)._2)abs   //and he absolute distance between the y coordinates
      ).sorted                 //sort them and assign the smaller one to c and the larger one to d
      c*1.5+(d-c)              //we do the minimum difference diagonally
    }                        //we now have a sequence of sequence of the distances for each route
    scanLeft 0d)(_+_)       //calculate the cumulative sum
    takeWhile(_<l)          //and drop all elements that are larger than the candle lifespan
    size                    //take the size
  ).max-1                   //take the maximum, taht is the size of the largest route and subtract 1 because we added (0,0) at the beginning

3

JavaScript(ES6),145

匿名递归函数,参数s为蜡烛寿命,参数l为乡村坐标列表。

一个深度优先搜索,停车时距离reachs蜡烛寿命

f=(s,l,x=0,y=0,v=0,A=Math.abs,X=Math.max)=>X(v,...l.map(([t,u],i,[h,...l],q=A(t-x),p=A(u-y),d=(l[i-1]=h,p+q+X(p,q))/2)=>s<=d?v:f(s-d,l,t,u,1+v)))

少打高尔夫球,请参见下面的代码段

测试

f=(s,l,x=0,y=0,v=0,A=Math.abs,X=Math.max)=>
  X(v,...l.map(
      ([t,u],i,[h,...l],q=A(t-x),p=A(u-y),d=(l[i-1]=h,p+q+X(p,q))/2)=>
      s<=d?v:f(s-d,l,t,u,1+v)
  ))

// ungolfed version

F=(s, l, 
   x=0, y=0, // current position
   v=0 // current number of visited sites 
  ) =>
   Math.max(v, ...l.map(
     (
       [t,u], i, [h,...l], // lambda arguments
       q = Math.abs(t-x), p = Math.abs(u-y), // locals
       d = (p+q+Math.max(p,q))/2
     ) => (
       l[i-1] = h,
       s <= d 
         ? v 
         : F(s-d, l, t, u, v+1)
     ) 
  ))

;[[4,[[-1,0],[1,0],[2,0],[3,0],[4,0],[5,0]], 3]
,[4, [[1,1],[2,2],[3,3]], 2]
,[5, [[1,1],[2,1],[3,1],[4,1],[5,0],[5,1]], 4]
].forEach(test=>{
  var span=test[0],list=test[1],check=test[2],
      result = f(span, list)
  console.log(result==check?'OK':'KO',span, list+'', result)
})


3

MATL,27字节

EH:"iY@OwYc!d|]yyXl++Ys>sX>

编辑(2016年11月26日):由于Xl功能的变化,必须在上面的代码中将其替换为2$X>。下面的链接包含该修改。

在线尝试!验证所有测试用例

说明

南瓜距离两个城市之间分离Δ X和Δ ÿ在每个坐标可以如得到(|Δ X | + |Δ ý | + MAX(|Δ X |,|Δ ÿ |))/ 2。

代码遵循以下步骤:

  1. 生成x坐标和y坐标的所有排列,并在每个0之前添加a。每个排列代表一条可能的路径。
  2. 为每个路径计算绝对差连续(这些|Δ X |和|Δ ÿ |上文)。
  3. 获取每个路径的每个步骤的南瓜距离。
  4. 计算每个路径的累积距离总和。
  5. 对于每条路径,找到累积距离达到机芯寿命之前的步数。
  6. 采取以上的最大值。

注释代码:

E        % Input candle lifespan implicitly. Multiply by 2
H:"      % Do thie twice
  i      %   Input array of x or y coordinates
  Y@     %   All permutations. Gives a matrix, with each permutation in a row
  OwYc   %   Prepend a 0 to each row
  !      %   Transpose
  d|     %   Consecutive differences along each column. Absolute value
]        % End
yy       % Duplicate the two matrices (x and y coordinates of all paths)
Xl       % Take maximum between the two, element-wise
++       % Add twice. This gives twice the pumpkin distance
Ys       % Cumulative sum along each column
>        % True for cumulative sums that exceed twice the candle lifespan
s        % Sum of true values for each column
X>       % Maximum of the resulting row array. Inmplicitly display

MATL真的可以生成1000(x,y)对的所有排列吗?
edc65

@ edc65不,这太多了(超过1000个元素的10 ^ 2500个排列)。我认为任何语言都无法做到
Luis Mendo

在评论中,OP要求管理多达1000个村庄。但是,任何生成并存储所有排列的答案都将失败,甚至15个村庄(约1300亿排列)都将失败
edc65 '16

@ edc65啊,我明白了。如果问题是NP难题,那么1000个村庄似乎是不现实的,看起来似乎是这样
Luis Mendo

2

Python 2.7、422字节

感谢NoOneIsHere指出其他改进!

感谢edc65注意到不保存列表,而是使用迭代器!

在线尝试!

from itertools import permutations
def d(s,e):
    d=0
    while s!=e:
        x=1 if s[0]<e[0] else -1 if s[0]>e[0] else 0
        y=1 if s[1]<e[1] else -1 if s[1]>e[1] else 0
        s=(s[0]+x,s[1]+y)
        d+=(1,1.5)[x and y]
return d
l,m=4,0
for o in permutations([(1,1),(2,2),(3,3)]):
    a,c=l-d((0,0),o[0]),1
    for j in range(len(o)-1):
        a-=d(o[j],o[j+1])
        c+=(0,1)[a>0]
    m=max(c,m)
print m

说明:

该函数根据给定的规则计算两点之间的距离,循环遍历输入生成器生成的所有排列并计算距离,如果距离小于蜡烛寿命,则将其减去并添加到计数器,如果该计数器大于当前的最大值,它将替换它。

松散:

from itertools import permutations

def distance(start_pos, end_pos):
    distance = 0
    while start_pos != end_pos:
        mod_x = 1 if start_pos[0] < end_pos[0] else -1 if start_pos[0] > end_pos[0] else 0
        mod_y = 1 if start_pos[1] < end_pos[1] else -1 if start_pos[1] > end_pos[1] else 0
        start_pos = (start_pos[0] + mod_x, start_pos[1] + mod_y)
        distance += (1, 1.5)[mod_x and mod_y]
    return distance

lifespan, max_amount = 4, 0
for item in permutations([(1,1), (2,2), (3,3)]):
    lifespan_local, current = lifespan - distance((0,0), item[0]), 1
    for j in range(len(item) - 1):
        lifespan_local -= distance(item[j], item[j + 1])
        current += (0, 1)[lifespan_local > 0]
    max_amount = max(current, max_amount)
print max_amount

您好,欢迎来到PPCG!您可以制作current cll m
NoOneIsHere

哇谢谢!错过了一个
Gmodjackass

在评论中,OP要求管理多达1000个村庄。但是,任何生成并存储所有排列的答案都将失败,甚至15个村庄(约1300亿排列)都将失败
edc65 '16

我们会在某个时候调查一下,谢谢大家的注意。我没有真正阅读评论,因为其中有很多。
Gmodjackass

完成后,现在使用生成器,而不是存储所有排列,而是在运行中生成它们,而应使用大约O(n)进行排列。
Gmodjackass

1

PHP,309字节

function j($x,$y,$c,$v){if($s=array_search([$x,$y],$v))unset($v[$s]);for($c--,$i=4;$c>0&&$i--;)$m=($n=j($x+[1,0,-1,0][$i],$y+[0,1,0,-1][$i],$c,$v))>$m?$n:$m;for($c-=.5,$i=4;$c>0&&$i--;)$m=($n=j($x+[1,-1,-1,1][$i],$y+[1,1,-1,-1][$i],$c,$v))>$m?$n:$m;return$s?++$m:$m;}echo j(0,0,$argv[1],array_chunk($argv,2));

绝对强力,甚至不是很短。使用方式如下:

php -r "function j($x,$y,$c,$v){if($s=array_search([$x,$y],$v))unset($v[$s]);for($c--,$i=4;$c>0&&$i--;)$m=($n=j($x+[1,0,-1,0][$i],$y+[0,1,0,-1][$i],$c,$v))>$m?$n:$m;for($c-=.5,$i=4;$c>0&&$i--;)$m=($n=j($x+[1,-1,-1,1][$i],$y+[1,1,-1,-1][$i],$c,$v))>$m?$n:$m;return$s?++$m:$m;}echo j(0,0,$argv[1],array_chunk($argv,2));" 5 1 1 2 1 3 1 4 1 5 0 5 1

具有更多的空格并保存在文件中:

<?php 
function j( $x, $y, $c, $v)
{
    if( $s = array_search( [$x,$y], $v ) )
        unset( $v[$s] );

    for( $c--, $i=4; $c>0 && $i--;)
        $m = ( $n=j($x+[1,0,-1,0][$i],$y+[0,1,0,-1][$i],$c,$v) )>$m ? $n : $m;

    for( $c-=.5, $i=4; $c>0 && $i--;)
        $m = ( $n=j($x+[1,-1,-1,1][$i],$y+[1,1,-1,-1][$i],$c,$v) )>$m ? $n : $m;

    return $s ? ++$m : $m;
}
echo j( 0, 0, $argv[1], array_chunk($argv,2) );

1

Python,175个字节

def f(c,l):
 def r(t):p=abs(t[0]-x);q=abs(t[1]-y);return p+q-.5*min(p,q)
 v=0;x,y=0,0
 while c>0 and len(l)>0:
  l.sort(key=r);c-=r(l[0]);x,y=l.pop(0)
  if c>=0:v+=1
 return v

c是蜡烛的寿命,l是元组列表-村庄坐标,v是已访问村庄的数量,(x,y)是杰克当前所在的一对村庄坐标。

r(t)是计算到当前位置的距离的函数,用于对列表进行排序,以使最接近的变为l[0]。使用的公式是|Δx| + |Δy| -min(|Δx|,|Δy|)/ 2。

在这里尝试!


1

球拍

(define (dist x1 y1 x2 y2)     ; fn to find distance between 2 pts
  (sqrt(+ (expt(- x2 x1)2)
          (expt(- y2 y1)2))))

(define (fu x1 y1 x2 y2)       ; find fuel used to move from x1 y1 to x2 y2;
  (let loop ((x1 x1)
             (y1 y1)
             (fuelUsed 0))
    (let* ((d1 (dist (add1 x1) y1 x2 y2))        ; horizontal movement
           (d2 (dist x1 (add1 y1) x2 y2))        ; vertical movement
           (d3 (dist (add1 x1) (add1 y1) x2 y2)) ; diagonal movement
           (m (min d1 d2 d3))) ; find which of above leads to min remaining distance; 
      (cond 
        [(or (= d2 0)(= d1 0)) (add1 fuelUsed)]
        [(= d3 0) (+ 1.5 fuelUsed)]
        [(= m d1) (loop (add1 x1) y1 (add1 fuelUsed))]
        [(= m d2) (loop x1 (add1 y1) (add1 fuelUsed))]
        [(= m d3) (loop (add1 x1) (add1 y1) (+ 1.5 fuelUsed))]))))

(define (f a l)
  (define u (for/list ((i l))
    (fu 0 0 (list-ref i 0) (list-ref i 1))))  ; find fuel used for each point; 
  (for/last ((i u)(n (in-naturals)) #:final (>= i a))
    n))

测试:

(f 4 '((1 1) (2 2) (3 3))) ;-> 2
(f 5 '((1 1) (2 1) (3 1) (4 1) (5 0) (5 1))) ;-> 4

输出:

2
4

但是,以上代码不适用于x和y的负值。

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.