かぼちゃの旅の問題


23

バックグラウンド:

ジャックはカボチャで、ハロウィーンのたびにカボチャ畑の近くの村の住民を怖がらせます。しかし、毎年、誰かが彼の中のろうそくに火をつけた後、彼はろうそくが燃え尽きる前に皆を怖がらせるために限られた時間を持ちます。過去数年間、彼は彼の貧弱な意思決定のために村を少しだけしか話せませんでしたが、彼があなたを助けてくれるようになったので、彼はできるだけ多くの村を話せるようになります!

仕事:

村の場所のリストとろうそくの寿命を考慮して、ジャックが訪問できる村の最大数を出力します。パス自体を印刷する必要はありません。

入力:

ろうそくの寿命とデカルト座標系の村の場所のリスト。Jackが発信するパンプキンパッチは常に0,0になります。とにかく入力をフォーマットできます。ジャックの動きを単純化するために、彼は水平、垂直、または斜めにしか移動できません。つまり、キャンドルは動きごとに1または1.5(斜めに少し長くなります)のライフユニットを失います。寿命が0以下の場合、キャンドルは燃え尽きます。

出力:

ろうそくが燃える前にジャックが訪れることができる村の最大数に等しい整数。

ルール:

これはなので、バイト単位の最短コードが優先されます。標準の抜け穴は許可されていません。

テストケース:

// 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
タイトルで笑いながら
ルイスメンドー

3
「ジャックの動きを単純化する」ことは皮肉なことですが、これは今ではもっと難しいです:D
PurkkaKoodari

1
私が間違っていなければ、最初のケースの出力は3になるはずだと思います
-Numberknot

1
@Numberknotいいえ、村が一度怖がると同じトリックに陥ることはありません。彼は各村を一度だけ怖がらせることができます。
ヨードル

5
これはN-Pumpkin Hardの問題であるため、一般に最大数の村を見つけることは困難です。村の最大数はありますか?
edc65

回答:


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の村(〜1300000000000個の順列)は失敗します
edc65

@ edc65アルゴリズムが十分な時間とメモリを与えられて理論的に機能する限り、そのようなケースはテスト可能である必要があるとは言いません。(n≒1000で実際にTSPを解決できるプログラムは非常に複雑であるため、ゴルフはもう楽しくありません。)
PurkkaKoodari

1000ではなく、15でもありませんか?
edc65

@ edc65私は速いだろうなアルゴリズムを見つけることができませんゼリーで簡単に実現可能になります。別の言語で、より効率的なソリューション(Held-Karpなど)を作成することを検討するかもしれません。ところで、実際に高速なアルゴリズムを使用している回答はありません。JSの方が優れていますが、範囲内に多くの都市がある場合は遅くなります。
-PurkkaKoodari

5

Java 7、 206 201バイト

5バイトを保存してくれた@KevinCruijssenに感謝

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
ニース、「ungolfed」フォームを含めるのに適しています。あなたがそれを有効にした場合、コードレビュアーはそれを「無料」と呼びません。;)
ワイルドカード

+1。ゴルフの1つのこと:i-x2回とb[c]-y2回使用するので,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
ケビンCruijssen 16年

これは一般的なケースでどのように機能しますか?
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は、Δ Yの各として得られる座標に(|Δ X | + |Δ Y | + MAX(|Δは、xは |、|Δ Y |))/ 2。

コードは次の手順に従います。

  1. x座標とy座標のすべての順列を生成し、各0の前にaを追加します。各順列は可能なパスを表します。
  2. (これらは|Δを計算し、各パスの絶対連続な違いはxは |及び|Δ Y上記|)。
  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を超えています)。どの言語もできないと思う
ルイスメンドー

コメントでは、OPは最大1000の村を管理するよう要求しています。しかし、すべての順列を生成して記憶する任意の答えも、15の村(〜1300000000000個の順列)は失敗します
edc65

@ edc65ああ、なるほど。ために表示される問題は、NP困難である場合には1000の村は非現実的なようだ
ルイス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

説明:

この関数は、指定されたルールに従って2点間の距離を計算します。ループは、入力のジェネレーターによって生成されたすべての順列を反復処理し、距離がキャンドルの寿命より短い場合は距離を計算します。カウンター。そのカウンターが現在の最大値よりも大きい場合は、それを置き換えます。

なし:

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 c、そしてll m
-NoOneIsHere

わあ、ありがとう!それを逃した
-Gmodjackass

コメントでは、OPは最大1000の村を管理するよう要求しています。しかし、すべての順列を生成して記憶する任意の答えも、15の村(〜1300000000000個の順列)は失敗します
edc65

ある時点でそれを調査します。コメントはたくさんあるので、実際には読みませんでした。
-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の負の値に対しては機能しません。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.