เส้นทางที่ยาวที่สุดบนเครื่องบิน 2d


14

คุณได้รับชุดค่าพิกัดอาร์บิทอล, ไม่ซ้ำกัน, 2d, จำนวนเต็มคาร์ทีเซียน: เช่น [(0,0), (0,1), (1,0)]

ค้นหาเส้นทางที่ยาวที่สุดที่เป็นไปได้จากชุดพิกัดนี้โดยมีข้อ จำกัด ว่าพิกัดสามารถ "เยี่ยมชม" เพียงครั้งเดียว (และคุณไม่ได้ "กลับมา" เพื่อประสานงานที่คุณเริ่มต้น)

สำคัญ:

คุณไม่สามารถ "ส่งต่อ" พิกัดหรือรอบ ๆ ตัวอย่างเช่นในตัวอย่างบันทึกย่อล่าสุด (รูปสี่เหลี่ยมผืนผ้า) คุณไม่สามารถย้ายจาก D เป็น A โดยไม่ได้ไปที่ C (ซึ่งอาจเป็นการตรวจทานซ้ำ สิ่งนี้ชี้ให้เห็นโดย @FryAmTheEggman

ฟังก์ชั่นอินพุต:อาร์เรย์ของพิกัดคาร์ทีเซียนแบบ 2d
ฟังก์ชั่นเอาท์พุท:ความยาวสูงสุดเท่านั้น
ผู้ชนะ: รหัสที่สั้นที่สุดชนะไม่มีการระงับ (ไม่ประหยัดเวลามากที่สุด)


ตัวอย่าง

สามเหลี่ยมกำเนิด

1 : ในกรณีนี้แสดงไว้ข้างต้นเส้นทางที่ยาวที่สุดที่ไม่มีพิกัด "เข้าชม" สองครั้งคือ A -> B -> O (หรือ OBA หรือ BAO) และความยาวเส้นทางคือ sqrt (2) + 1 = 2.414




สี่เหลี่ยม

2 : ในกรณีนี้แสดงไว้ข้างต้นเส้นทางที่ยาวที่สุดที่ไม่มีพิกัด "เข้าชม" สองครั้งคือ ABOC (และเห็นได้ชัดว่า COBA, OCAB และอื่น ๆ ) และสำหรับตารางหน่วยที่แสดงจะคำนวณเป็น sqrt (2) + sqrt (2) + 1 = 3.828


หมายเหตุ: ต่อไปนี้เป็นกรณีทดสอบเพิ่มเติมที่ไม่สำคัญเหมือนสองตัวอย่างก่อนหน้านี้ นี่คือสี่เหลี่ยมผืนผ้าที่เกิดขึ้นจาก 6 พิกัด:

ป้อนคำอธิบายรูปภาพที่นี่

ที่นี่เส้นทางที่ยาวที่สุดคือ: A -> E -> C -> O -> D -> B ซึ่งคือ 8.7147
(diagonals ที่เป็นไปได้มากที่สุดเดินไปได้และไม่มีขอบตัดผ่าน)


นี่คือคำถามที่คล้ายกันมากถึงแม้ว่าจะมีการให้คะแนนที่แตกต่างกัน
Geobits

@Geobits ตกลง แต่ฉันจะไม่พูดว่า "มาก" ต้องผ่านการอธิบายปัญหาที่นั่น และสำหรับเรื่องนั้นปัญหาของพา ธ ต่ำสุด / สูงสุดคือรสชาติของกราฟที่คุณสงสัย ฉันสนใจวิธีแก้ปัญหาการบันทึกแบบไบต์ที่นี่
BluePill

@ เสร็จสิ้นการทำ มันคือ 8.7147
BluePill

โดยวิธีการ: ยินดีต้อนรับสู่ PPCG!
ทำให้เสียชีวิต

@ ขอขอบคุณ! (อันที่จริงฉันเป็นผู้สังเกตการณ์ที่นี่มาพักหนึ่งแล้วเพิ่งตื่นตัวและเข้าสู่ทุกสิ่งตั้งแต่วันนี้) :)
BluePill

คำตอบ:


3

Pyth, 105 103 100 92 86 ไบต์

V.pQK0FktlNJ.a[@Nk@Nhk)FdlNI&!qdk&!qdhkq+.a[@Nk@Nd).a[@Nd@Nhk)J=K.n5B)=K+KJ)IgKZ=ZK))Z

              Z = 0 - value of longest path
              Q = eval(input())

V.pQ         for N in permutations(Q):
  K0           K = 0 - value of current path
  FktlN        for k in len(N) - 1:
    J.a          set J = distance of
    [@Nk                 Q[k] and Q[k+1]
    @Nhk)    
    FdlN         for d in len(N):
I&                 if d != k && d != (k + 1)
!qdk
&!qdhk
q+                and if sum of
.a                   distance Q[k] and Q[d]
 [@Nk                
 @Nd)                
.a                   distance Q[d] and Q[k+1]
 [@Nd
 @Nhk)
J                    are equal to J then
  =K.n5              set K to -Infinity
  B                  and break loop
                     ( it means that we passed over point )
  )                   end of two if statements
=K+KJ                  K+=J add distance to our length
)                      end of for
IgKZ                   if K >= Z - if we found same or better path
  =ZK                  Z = K       set it to out max variable
))                     end of two for statements
Z                      output value of longest path 

ลองที่นี่!


2

Mathematica, 139 ไบต์

Max[Tr@BlockMap[If[1##&@@(Im[#/#2]&@@@Outer[#/Abs@#&[#-#2]&,l~Complement~#,#])==0,-∞,Abs[{1,-1}.#]]&,#,2,1]&/@Permutations[l=#+I#2&@@@#]]&

กรณีทดสอบ

%[{{0,0},{0,1},{1,0},{1,1},{2,0},{2,1}}]
(* 3 Sqrt[2]+2 Sqrt[5] *)

%//N
(* 8.71478 *)

1

Perl, 341 322 318 ไบต์

sub f{@g=map{$_<10?"0$_":$_}0..$#_;$"=',';@l=grep{"@g"eq join$",sort/../g}glob"{@g}"x(@i=@_);map{@c=/../g;$s=0;$v=1;for$k(1..$#c){$s+=$D=d($k-1,$k);$_!=$k&&$_!=$k-1&&$D==d($_,$k)+d($_,$k-1)and$v=0 for 0..$#c}$m=$s if$m<$s&&$v}@l;$m}sub d{@a=@{$i[$c[$_[0]]]};@b=@{$i[$c[$_[1]]]};sqrt(($a[0]-$b[0])**2+($a[1]-$b[1])**2)}

รหัสรองรับมากถึง 100 คะแนน เนื่องจากมันสร้างการเปลี่ยนจุดที่เป็นไปได้ทั้งหมด 100 คะแนนจะต้องมีหน่วยความจำอย่างน้อย 3.7 × 10 134 yottabytes (12 คะแนนจะใช้ 1.8Gb)

แสดงความคิดเห็น:

sub f {
    @g = map { $_<10 ? "0$_" : $_ } 0..$#_; # generate fixed-width path indices
    $" = ',';                               # set $LIST_SEPARATOR to comma for glob
    @l = grep {                             # only iterate paths with unique points
        "@g" eq join $", sort /../g         # compare sorted indices with unique indices
    } glob "{@g}" x (@i=@_);                # produce all permutations of path indices
                                            # and save @_ in @i for sub d
    map {
        @c = /../g;                         # unpack the path indices
        $s=0;                               # total path length
        $v=1;                               # validity flag
        for $k (1..$#c) {                   # iterate path
            $s +=                           # sum path length
                $D = d( $k-1, $k );         # line distance 

              $_!=$k && $_!=$k-1            # except for the current line,
              && $D == d( $_, $k )          # if the point is on the line,
                     + d( $_, $k-1 )
              and $v = 0                    # then reset it's validity
            for 0 .. $#c                    # iterate path again to check all points
        }
        $m=$s if $m<$s && $v                # update maximum path length
    } @l;
    $m                                      # return the max
}

sub d {                                     
    @a = @{ $i[$c[$_[0]]] };                # resolve the index $_[0] to the first coord
    @b = @{ $i[$c[$_[1]]] };                # idem for $_[1]
    sqrt( ($a[0] - $b[0])**2       
        + ($a[1] - $b[1])**2 )      
}

TestCases:

print f( [0,1], [0,0], [1,0] ), $/;        $m=0; # reset max for next call
print f( [0,0], [0,1], [1,0], [1,1] ), $/; $m=0;
print f( [0,0], [0,1], [0,2] ), $/;        $m=0;
print f( [0,0], [0,1], [0,2], 
         [1,0], [1,1], [1,2]),$/;          $m=0;
  • 322 ไบต์:บันทึก 19 โดยไม่รีเซ็ต$"และบางอินไลน์
  • 318 ไบต์:บันทึก 4 โดยลด max สูงสุดของ coords เป็น 100
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.