จำนวนผลรวมของปัจจัย


12

ป.ร. ให้ไว้เป็นจำนวนเต็มบวกn> 1ตรวจสอบจำนวนตัวเลขที่สามารถทำได้โดยการเพิ่มจำนวนเต็มสินค้ามากกว่า 1 ซึ่งเป็นn ตัวอย่างเช่นถ้าn = 24เราสามารถแสดงnเป็นผลิตภัณฑ์ในวิธีต่อไปนี้

24 = 24             -> 24            = 24
24 = 12 * 2         -> 12 + 2        = 14
24 = 6 * 2 * 2      -> 6 + 2 + 2     = 10
24 = 6 * 4          -> 6 + 4         = 10
24 = 3 * 2 * 2 * 2  -> 3 + 2 + 2 + 2 = 9
24 = 3 * 4 * 2      -> 3 + 4 + 2     = 9
24 = 3 * 8          -> 3 + 8         = 11

เราสามารถรับหมายเลขต่อไปนี้ด้วยวิธีนี้:

24, 14, 11, 10, 9

นั่นคือทั้งหมด 5 ตัวเลขดังนั้นผลลัพธ์ของเราคือ 5

งาน

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

นี่เป็นคำถามเกี่ยวกับดังนั้นคำตอบจะได้คะแนนเป็นไบต์โดยมีจำนวนไบต์น้อยกว่าดีกว่า

ลำดับ OEIS

OEIS A069016


1
กรณีทดสอบที่แนะนำ 240
Jonathan Allan

ตั้งแต่ 36 ทำให้เกิดการถกเถียงกันมากมายฉันแนะนำว่าเป็นกรณีทดสอบ
user41805

3
@WheatWizard 12 * 3
แมวธุรกิจ

1
ฉันมี2,2,3,3 -> 10, 2,6,3 -> 11, 2,2,9 -> 13, 12,3 -> 15, 2,18 -> 20,36 -> 36
ธุรกิจแมว

2
36 ควรเป็น 7 เพราะ(2*3)+(2*3)=12ควรอยู่ในรายการด้วย
Jonathan Allan

คำตอบ:


6

Brachylogขนาด 8 ไบต์

{~×≜+}ᶜ¹

ลองออนไลน์!

คำอธิบาย

{    }ᶜ¹  Count unique results of this predicate:
 ~×       Create list of numbers whose product is the input.
   ≜      Label the list, forcing it to take a concrete value.
    +     Take its sum.

ฉันไม่แน่ใจว่าทำไมทั้งหมดสร้างรายการที่มีองค์ประกอบด้านบน 1 แต่ดูเหมือนว่าจะทำเช่นนั้นซึ่งใช้งานได้ดีในความท้าทายนี้


มันสร้างรายการที่มีองค์ประกอบด้านบน 1 เท่านั้นไม่เช่นนั้นจะมีรายการจำนวนไม่สิ้นสุดซึ่งมักจะไม่ดีในความท้าทายเช่นนี้
ทำให้เสียชีวิต

4

Gaia , 9 14 13 ไบต์

แก้ไขข้อผิดพลาดด้วยราคา 5 ไบต์ขอบคุณ Jonathan Allan และ 1 ไบต์ golfed

ḍfḍ¦e¦Π¦¦Σ¦ul

ลองออนไลน์! หรือลองเป็นชุดทดสอบ

คำอธิบาย

ḍ              Prime factors
 f             Permutations
  ḍ¦           Get the partitions of each permutation
    e¦         Dump each list of partitions (1-level flatten the list)
      Π¦¦      Product of each partition
         Σ¦    Sum each group of products
           u   Deduplicate
            l  Length

คุณสามารถให้ลิงค์ TIO ที่ประกอบด้วยเอาท์พุทหมายเลข 1 ถึง 36 ที่สอดคล้องกันได้หรือไม่?
user41805

นี่เหมือนกับคำตอบของ Jelly ...
Erik the Outgolfer

1
OP บอกว่าผลลัพธ์สำหรับ 36 ควรเป็น 5 ไม่ใช่ 6
user41805

1
ตามที่ OEIS 36 ให้ 7 แทน 5 แต่คุณให้ 6
user41805

1
เห็นได้ชัดว่า Gaia ออกไป[6 6]
user41805

2

เจลลี่ ,  11 15  14 ไบต์

+4 ไบต์แก้ไขข้อผิดพลาด (อาจเป็นวิธีที่ดีกว่าหรือไม่)
-1 ไบต์โดยใช้สมมาตรในทางที่ผิด

ÆfŒ!ŒṖ€ẎP€S€QL

ลิงก์ monadic ที่รับและส่งคืนจำนวนเต็มบวก

ลองออนไลน์! หรือดูชุดทดสอบ

อย่างไร?

การอัปเดต ...

ÆfŒ!ŒṖ€ẎP€S€QL - Link: number, n      e.g. 30
Æf             - prime factors of n        [2,3,5]
  Œ!           - all permutations          [[2,3,5],[2,5,3],[3,2,5],[3,5,2],[5,2,3],[5,3,2]]
    ŒṖ€        - all partitions for €ach   [[[[2],[3],[5]],[[2],[3,5]],[[2,3],[5]],[[2,3,5]]],[[[2],[5],[3]],[[2],[5,3]],[[2,5],[3]],[[2,5,3]]],[[[3],[2],[5]],[[3],[2,5]],[[3,2],[5]],[[3,2,5]]],[[[3],[5],[2]],[[3],[5,2]],[[3,5],[2]],[[3,5,2]]],[[[5],[2],[3]],[[5],[2,3]],[[5,2],[3]],[[5,2,3]]],[[[5],[3],[2]],[[5],[3,2]],[[5,3],[2]],[[5,3,2]]]]
       Ẏ       - tighten                   [[[2],[3],[5]],[[2],[3,5]],[[2,3],[5]],[[2,3,5]],[[2],[5],[3]],[[2],[5,3]],[[2,5],[3]],[[2,5,3]],[[3],[2],[5]],[[3],[2,5]],[[3,2],[5]],[[3,2,5]],[[3],[5],[2]],[[3],[5,2]],[[3,5],[2]],[[3,5,2]],[[5],[2],[3]],[[5],[2,3]],[[5,2],[3]],[[5,2,3]],[[5],[3],[2]],[[5],[3,2]],[[5,3],[2]],[[5,3,2]]]
        P€     - product for €ach          [[30],[6,5],[10,3],[2,3,5],[30],[10,3],[6,5],[2,5,3],[30],[6,5],[15,2],[3,2,5],[30],[15,2],[6,5],[3,5,2],[30],[10,3],[15,2],[5,2,3],[30],[15,2],[10,3],[5,3,2]]
               -   ...this abuses the symmetry saving a byte over P€€
          S€   - sum €ach                  [30,11,13,10,30,13,11,10,30,11,17,10,30,17,11,10,30,13,17,10,30,17,13,10][10,17,11,30,10,17,13,30,10,13,11,30,10,13,17,30,10,11,13,30,10,11,17,30]
            Q  - de-duplicate              [30,11,13,10,17]
             L - length                    5

1

Python 2 , 206 ไบต์

k=lambda n,i=2:n/i*[k]and[k(n,i+1),[i]+k(n/i)][n%i<1]
def l(t):
 r=[sum(t)]
 for i,a in enumerate(t):
    for j in range(i+1,len(t)):r+=l(t[:i]+[a*t[j]]+t[i+1:j]+t[j+1:])
 return r
u=lambda n:len(set(l(k(n))))

ลองออนไลน์!

คำอธิบาย

    # Finds the prime factors
k=lambda n,i=2:n/i*[k]and[k(n,i+1),[i]+k(n/i)][n%i<1]
    # Function for finding all possible numbers with some repetition
def l(t):
    # Add the current sum
 r=[sum(t)]
    # For each number in the current factors
 for i,a in enumerate(t):
    # For all numbers further back in the current factors, find all possible numbers when we multiply together two of the factors
    for j in range(i+1,len(t)):r+=l(t[:i]+[a*t[j]]+t[i+1:j]+t[j+1:])
 return r
    # Length of set for distinct elements
u=lambda n:len(set(l(k(n))))



1

JavaScript (ES6) 107 ไบต์

f=(n,o,s=0,i=2,q=n/i)=>(o||(o={},o[n]=t=1),i<n?(q>(q|0)|o[e=s+i+q]||(o[e]=t+=1),f(q,o,s+i),f(n,o,s,i+1)):t)

Ungolfed:

f=(n,                                 //input
   o,                                 //object to hold sums
   s=0,                               //sum accumulator
   i=2,                               //start with 2
   q=n/i                              //quotient
  )=>(
  o||(o={},o[n]=t=1),                 //if first call to function, initialize o[n]
                                      //t holds the number of unique sums
  i<n?(                               //we divide n by all numbers between 2 and n-1
    q>(q|0)|o[e=s+i+q]||(o[e]=t+=1),  //if q is integer and o[s+i+q] is uninitialized,
                                      //... make o[s+i+q] truthy and increment t
    f(q,o,s+i),                       //recurse using q and s+i
    f(n,o,s,i+1)                      //recurse using n with the next i
  ):t                                 //return t
)

กรณีทดสอบ:

เพื่อตรวจสอบว่าฟังก์ชั่นคำนวณจำนวนเงินที่ถูกต้องเราสามารถส่งออกปุ่มของวัตถุแทนt:

f=(n,o,s=0,i=2,q=n/i)=>(o||(o={},o[n]=t=1),i<n?(q>(q|0)|o[e=s+i+q]||(o[e]=t+=1),f(q,o,s+i),f(n,o,s,i+1)):Object.keys(o))

console.log(f(24));  //9, 10, 11, 14, 24


1

Python 3 , 251 ไบต์

lambda n:1 if n==1else len(set(sum(z)for z in t(f(n))))
f=lambda n:[]if n==1else[[i]+f(n//i)for i in range(2,n+1)if n%i==0][0]
t=lambda l:[l] if len(l)==1else[[l[0]]+r for r in t(l[1:])]+[r[:i]+[l[0]*e]+r[i+1:]for r in t(l[1:])for i,e in enumerate(r)]

ลองออนไลน์!

การออกแบบเป็นพื้นฐาน:

  1. Factorize n มาเป็นปัจจัยสำคัญของมัน (เป็นปัจจัยสำคัญอาจปรากฏขึ้นหลายครั้ง: 16 -> [2,2,2,2]) fนั่นคือฟังก์ชั่น

  2. คำนวณพาร์ติชั่นของรายการของตัวประกอบสำคัญ, และคูณตัวคูณในแต่ละพาร์ติชั่น. พาร์ติชั่นพบได้ใน/programming//a/30134039และมีการคำนวณผลิตภัณฑ์ได้ทันที tนั่นคือฟังก์ชั่น

  3. ฟังก์ชั่นสุดท้ายได้รับผลิตภัณฑ์ของแต่ละพาร์ติชันของ n และหาผลรวมจำนวนที่ได้รับค่าที่แตกต่างกัน

ผลการมี2310=2*3*5*7*1149

แก้ไข : อาจต้องแก้ไข แต่ฉันไม่มีเวลาดูตอนนี้ (ฉันรีบ) คำแนะนำ: ผลลัพธ์ถูกต้อง2310=2*3*5*7*11ใช่หรือไม่ ฉันไม่คิดอย่างนั้น

EDIT2 : การแก้ไขขนาดใหญ่ ดูด้านบน. เวอร์ชันก่อนหน้า (บั๊กกี้) คือ: ลองออนไลน์!

fคำนวณปัจจัย (โดย(0, n)แทนที่(1, n)เป็นองค์ประกอบแรก

แลมบ์ดาแยกแต่ละปัจจัยใน "ปัจจัยย่อย" และสรุป "ปัจจัยย่อย" เหล่านั้น




ขอขอบคุณที่ @notjagan แต่รหัสเริ่มต้นเป็นเรื่องที่ผิดดังนั้น ...
jferard

ขอบคุณ @HalvardHummel แต่พูดเหมือนข้างบน
jferard
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.