ซึ่งกันและกัน copycats


17

ให้เป็นจำนวนเต็มบวกซึ่งประกอบด้วยnตัวเลขทศนิยมวันที่1 , d 2 , . . , d n ให้Bเป็นจำนวนเต็มบวกอีกตัวAnd1,d2,...,dnB

สำหรับวัตถุประสงค์ของการท้าทายนี้เราเรียกเลียนแบบของBถ้ามีรายการอย่างน้อยหนึ่งของจำนวนเต็มบวกP 1 , P 2 , . . , p nเช่นนั้น:ABp1,p2,...,pn

i=1ndipi=B

AและBเรียกว่าcopycats ซึ่งกันและกันถ้าAเป็น copycat ของBและBเป็นเลียนแบบของA

ตัวอย่าง

526และ853เป็น copycats ซึ่งกันและกันเนื่องจาก:

53+29+63=853

และ:

83+51+32=526

ความท้าทาย

รับจำนวนเต็มบวกAและBสองค่างานของคุณคือพิมพ์หรือส่งคืนค่าความจริงหากAและBเป็นตัวเลียนแบบส่วนกลับหรือค่าเท็จ

คำอธิบายและกฎ

  • คุณอาจใช้AและBในรูปแบบที่สมเหตุสมผลและไม่คลุมเครือใด ๆ (เช่นจำนวนเต็ม, สตริง, รายการตัวเลข, ... )
  • AและBอาจเท่ากัน ถ้าเป็นจำนวนเป็นเลียนแบบซึ่งกันและกันของตัวเองก็เป็นของA007532
  • แทนที่จะเป็นค่าจริง / ค่าเท็จคุณอาจคืนค่าที่สอดคล้องกันสองค่า
  • สำหรับ1A<1000และ1B<1000รหัสของคุณจะต้องแล้วเสร็จในเวลาน้อยกว่าหนึ่งนาที ถ้ามันใช้เวลามากเกินไปสำหรับค่าที่สูงกว่ามันจะต้องสามารถแก้ไขได้ในทางทฤษฎี
  • นี่คือรหัสกอล์ฟ

กรณีทดสอบ

Truthy:
1 1
12 33
22 64
8 512
23 737
89 89
222 592
526 853
946 961
7 2401
24 4224
3263 9734
86 79424
68995 59227
32028 695345

Falsy:
1 2
3 27
9 24
24 42
33 715
33 732
222 542
935 994
17 2401
8245 4153

กรณีที่แนะนำ: 17 2401 -> false. ฉันเกือบจะสะดุดกับเรื่องนี้
Shieru Asakoto

คำตอบ:


8

Brachylogขนาด 19 ไบต์

ẹ{∧ℕ₁;?↔^}ᵐ².+ᵐ↔?∧≜

ลองออนไลน์!

ผลลัพธ์true.หรือfalse.

คำอธิบาย

ẹ                     Split the numbers into lists of digits
 {       }ᵐ²          For each digit
  ∧ℕ₁                 Let I be a strictly positive integer
     ;?↔^                Compute the digit to the power I (which is unknown currently)
            .         Call . the list of those new numbers
            .+ᵐ       Their mapped sum results…
               ↔?     …in the reverse of the input
                 ∧≜   Find if there effectively are values for the numbers in . to satisfy
                        these relationships

2
@Arnauld แก้ไขที่ราคา 1 ไบต์ มันล้มเหลวเนื่องจาก2401มี a 0ที่ไม่ทำงานกับวิธีการที่ฉันตรวจสอบว่าIเป็นบวกอย่างเคร่งครัด (เพราะฉันแมปทั้งสองIและหลักในการบันทึกไบต์)
Fatalize

6

Husk , 17 ไบต์

Λλ€⁰mΣΠTṪ^ḣ√⁰d)De

ลองออนไลน์! เสร็จสิ้นทุกกรณีทดสอบภายใต้ 1,000 ในประมาณ 11 วินาที

คำอธิบาย

Λλ€⁰mΣΠTṪ^ḣ√⁰d)De  Implicit inputs, say 12 and 33.
                e  Put into a list: [12,33]
               D   Duplicate: [12,33,12,33]
Λ                  Does this hold for all adjacent pairs:
                    (12,33 is checked twice but it doesn't matter)
                    For example, arguments are 33 and 12.
 λ            )     Anonymous function with arguments 33 (explicit) and 12 (implicit).
             d      Base-10 digits of implicit argument: [1,2]
          ḣ√⁰       Range to square root of explicit argument: [1,2,3,4]
        Ṫ^          Outer product with power: [[1,2],[1,4],[1,8],[1,16],[1,32]]
       T            Transpose: [[1,1,1,1,1],[2,4,8,16,32]]
      Π             Cartesian product: [[1,2],[1,4],...,[1,32]]
    mΣ              Map sum: [3,5,...,33]
  €⁰                Is the explicit argument in this list? Yes.

ทำไมมันถึงได้ผล

B=d1p1++dnpndipidipiBipilogdiBdi1011piB1piBlogdiBBdi3Bdi=2log2B>BB=823=812A223A=210kkA8B อย่างไรก็ตามและโปรแกรมส่งคืนค่าเท็จโดยไม่คำนึงถึงการคำนวณอื่น ๆ


คำตอบที่ดีซึ่งทำให้ฉันต้องการเรียนรู้ Husk สองคำถาม: 1. ข้อโต้แย้งโดยนัยถูกกล่าวถึงอีกครั้งหลังจากที่คุณแนะนำ จะใช้เมื่อไหร่? 2. คุณช่วยอธิบายได้ไหมว่าทำไมอัลกอริธึมนี้จึงเทียบเท่ากับที่โพสต์ใน OP
Jonah

1
@Jonah 1. ฟังก์ชั่นหลักdรับอาร์กิวเมนต์โดยปริยาย ฉันชี้แจงเรื่องนี้ในคำอธิบาย 2. ฉันเพิ่มอาร์กิวเมนต์สำหรับความถูกต้องของโปรแกรม
Zgarb

ขอบคุณ ... btw ส่วนที่ทำให้ฉันสับสนคือ "รายชื่อของทุกคนมาจากไหน" .... ตอนนี้ฉันรู้แล้วว่านี่เป็นเพียงเพราะกำลังทั้งหมดของ 1 เป็นเพียงหนึ่งเดียว ....
Jonah


4

05AB1E , 26 22 ไบต์

εVтLIàgãεYSym}OIyKå}˜P

ใช้อินพุตเป็นรายการ (เช่น [526,853] )

ลองมันออนไลน์หรือตรวจสอบกรณีทดสอบมากที่สุดในช่วง[1,999]

คล้ายกับคำตอบเก่าของฉันด้านล่างยกเว้นว่า[1,n]รายการจะถูก hardcoded ไป[1,100]และมันจะสร้างรายการคาร์ทีเซียนสองครั้งหนึ่งครั้งสำหรับแต่ละการแมปอินพุทซึ่งเป็นคอขวดหลักในแง่ของประสิทธิภาพ


คำตอบเก่า 26 ไบต์ที่ดีกว่าสำหรับประสิทธิภาพ:

Z©bgL®gãUεVXεYSym}OsN>èå}P

ในรุ่นนี้ฉันซื้อขายเป็นไบต์เพื่อทำให้ประสิทธิภาพดีขึ้นมากเพื่อให้สามารถทำงานได้ [1,1000]ได้อย่างง่ายดาย กรณีทดสอบที่มีตัวเลขอยู่ในช่วง[1,9999]ดำเนินการใน TIO ประมาณหนึ่งวินาที กรณีทดสอบในช่วง[10000,99999]ประมาณ 10-15 วินาทีสำหรับ TIO เหนือกว่านั้นก็จะหมดเวลา

ลองออนไลน์หรือ[1,9999]ตรวจสอบกรณีทดสอบทั้งหมดที่มีตัวเลขในช่วง

คำอธิบาย:

Z                 # Push the max of the (implicit) input-list (without popping)
                  #  i.e. [526,853] → 853
 ©                # Store it in the register (without popping)
  b               # Convert to binary
                  #  i.e. 853 → 1101010101
   g              # Take its length
                  #  i.e. 1101010101 → 10
    L             # Pop and push a list [1, n]
                  #  i.e. 10 → [1,2,3,4,5,6,7,8,9,10]
     ®            # Push the max from the register
      g           # Take its length
                  #  i.e. 853 → 3
       ã          # Cartesian product the list that many times
                  #  i.e. [1,2,3,4,5,6,7,8,9,10] and 3
                  #   → [[1,1,1],[1,1,2],[1,1,3],...,[10,10,8],[10,10,9],[10,10,10]]
        U         # Pop and store it in variable `X`
ε              }  # Map both values of the input list:
 V                # Store the current value in variable `Y`
  Xε    }         # Map `y` over the numbers of variable `X`
    Y             # Push variable `Y`
     S            # Convert it to a list of digits
                  #  i.e. 526 → [5,2,6]
      ym          # Take each digit to the power of the current cartesian product sublist
                  #  i.e. [5,2,6] and [3,9,3] → [125,512,216]
         O        # Take the sum of each inner list
                  #  i.e. [[5,2,6],[5,2,36],[5,2,216],...,[125,512,216],...]
                  #   → [13,43,223,...,853,...]
          s       # Swap to push the (implicit) input
           N>     # Push the index + 1
                  #  i.e. 0 → 1
             è    # Index into the input-list (with automatic wraparound)
                  #  i.e. [526,853] and 1 → 853
              å   # Check if it's in the list of sums
                  #  i.e. [13,43,223,...,853,...] and 853 → 1
                P # Check if it's truthy for both both (and output implicitly)
                  #  i.e. [1,1] → 1


4

Perl 6 , 87 84 69 ไบต์

-15 ไบต์ขอบคุณ nwellnhof!

{!grep {!grep $^b,[X+] 0,|map (*X**1..$b.msb+1),$^a.comb},.[0,1,1,0]}

ลองออนไลน์!

รหัสบล็อกที่ไม่ระบุชื่อที่ส่งคืนจริงหรือเท็จ

คำอธิบาย:

{!grep {!grep $^b,[X+] 0,|map (*X**1..$b.msb+1),$^a.comb},.[0,1,1,0]}

{                                                                   }  # Anonymous code block
 !grep    # None of:
                                                          .[0,1,1,0]   # The input and the input reverse
       {!grep       # None of
                  [X+]       # All possible sums of
                       0,|   # 0 (this is to prevent single digit numbers being crossed with themself)
                          map                  ,$^a.comb   # Each digit mapped to
                              (*X**           )  # The power of
                                   1..$b.msb+1   # All of 1 to the most significant bit of b plus 1
                                                 # This could just be b+1, but time constraints...
              $^b,  # Is equal to b

@Arnauld, Junction คือ Truthy / Falsey ดังที่ฉันได้แสดงโดยใช้โอเปอเรเตอร์ boolify ก่อนที่จะส่งออก ฉันเล่นกอล์ฟเป็นอย่างอื่นต่อไปแม้ว่าฉันจะสามารถบันทึกไบต์ได้หากฉันสามารถส่งออกค่าจริงสำหรับเท็จและในทางกลับกัน ... ?
Jo King

ขอขอบคุณสำหรับการชี้แจง. เกี่ยวกับการผกผันความจริง / เท็จ: ฉันอยากจะบอกว่าไม่มี
Arnauld

4

JavaScript (Node.js) , 116 92 89 86 83 77 ไบต์

a=>b=>(G=(c,g,f=h=g%10)=>g?c>f&f>1&&G(c,g,h*f)||G(c-f,g/10|0):!c)(a,b)&G(b,a)

ลองออนไลน์!

(A)(B)คาดว่าการป้อนข้อมูลเป็น


เงื่อนไขดี (ฉันได้ชี้แจงรูปแบบการป้อนข้อมูลในการท้าทาย)
Arnauld

@Arnauld โอ้ฉันเพิ่งพบวิธีการที่ไม่ได้ใช้สตริง แต่ยัง 108 ไบต์
Shieru Asakoto

2

J , 56 ไบต์

h~*h=.4 :'x e.+/|:>,{x 4 :''<y&*^:(x&>)^:a:y''"+"."+":y'

ลองออนไลน์!

คำนิยามที่ชัดเจนซ้อนกัน!

มันทำงานอย่างไร

powers =. 4 :'<y&*^:(x&>)^:a:y'  Explicit aux verb. x = target, y = digit
                             y   Starting from y,
               y&*^:     ^:a:    collect all results of multiplying y
                    (x&>)        until the result is at least x
              <                  Box it.

h=.4 :'x e.+/|:>,{x powers"+"."+":y'  Explicit aux verb. x, y = two input numbers
                            "."+":y   Digits of y
                  x powers"+          Collect powers of digits of y under x
                 {            Cartesian product of each item
           +/|:>,             Format correctly and compute the sums
       x e.                   Does x appear in the list of sums?

h~*h  Tacit main verb. x, y = two input numbers
      Since h tests the condition in only one direction,
      test again the other way around (~) and take the AND.


1

J, 68 ไบต์

ฉันคิดว่า J จะเล่นได้ค่อนข้างดีที่นี่ แต่ท้ายที่สุดมันก็แกร่งกว่าที่ฉันคาดไว้และจะรักคำแนะนำสำหรับการเล่นกอล์ฟต่อไป ...

g=.#@#:@[
1 1-:[:(([:+./[=1#.]^"#.1+g#.inv[:i.g^#@])"."0@":)/"1],:|.

ลองออนไลน์!

หมายเหตุ: เราลบ 3 chars จาก TIO นับตั้งแต่นั้นมา f=.ในฟังก์ชั่นหลักไม่นับ

ungolfed

1 1 -: [: (([: +./ [ = 1 #. ] ^"#. 1 + g #.inv [: i. g ^ #@]) "."0@":)/"1 ] ,: |.
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.