Знайдіть примітивні напівдосконалі числа


17

Напівдосконалі числа

Напівдосконале / псевдодосконале число - це ціле число, що дорівнює сумі частини або всіх його дільників (виключаючи себе). Числа, які дорівнюють сумі всіх їх дільників, досконалі.

Divisors of 6 : 1,2,3
      6 = 1+2+3 -> semiperfect (perfect)
Divisors of 28 : 1,2,4,7,14
      28 = 14+7+4+2+1 -> semiperfect (perfect)
Divisors of 40 : 1,2,4,5,8,10,20
      40 = 1+4+5+10+20 or 2+8+10+20 -> semiperfect

Примітивні

Примітивне напівдосконале число - це напівдосконале число без напівдосконалих дільників (крім себе :))

Divisors of 6 : 1,2,3
      6  = 1+2+3 -> primitive
Divisors of 12 : 1,2,3,4,6
      12 = 2+4+6 -> semiperfect

В якості посилань використовуйте OEIS серії A006036 для примітивних напівдосконалих номерів та A005835 для напівдосконалих.

Мета

Напишіть програму або функцію будь-якою мовою. Це буде приймати число n як функціональний параметр або від STDIN / найближчої альтернативи вашій мові, і виведе всі примітивні напівдосконалі числа від 1 до n (включно).

Вихід має бути сформований так, 6[separator]20[separator]28[separator]88...де [роздільник] є як новий рядок, пробіл або кома. Не повинно бути ні початкового [роздільника], ні закінчення.

Редагувати: Ви можете залишити новий рядок

Приклади

вхід:

5

вихід:

вхід:

20

вихід:

6
20

вхід:

100

вихід:

6 20 28 88

Оцінка балів

Це код-гольф, тому найкоротший код у байтах виграє.

Не намагайтесь обдурити нас лазівками, будь ласка :).

Буду радий, що ви можете залишити пояснення свого коду для гольфу, як тільки подумаєте, що закінчили з гольфом!

Оскільки на цей виклик вже є приємні відповіді, і він повільно затихне, я покладу йому край. Переможець цього коду-гольфу буде визначений у понеділок 29:00, 00:00 GMT. Молодці всім, хто відповів, і удачі тим, хто буде намагатися їх перемогти :)

Відповіді:


8

Pyth, 28 27 байт

VQI}KhNsMyJf!%KTSNI!@JYeaYK

1 байт завдяки @Jakube

Демонстрація.

VQI}KhNsMyJf!%KTSNI!@JYeaYK
                                Implicit:
                                Y = []
                                Q = eval(input())
VQ                              for N in range(Q):
    KhN                         K = N+1
           f    SN              filter T over range(1, N)
            !%KT                the logical not of K%T.
                                This is the list of divisors of K.
          J                     Store the list in J.
         y                      Create all of its subsets.
       sM                       Map each subset to its sum.
  I}K                           If K is in that list: (If K is semiperfect)
                  I!@JY         If the intersection of J (the divisors)
                                and Y (the list of primitive semiperfect numbers)
                                is empty:
                        aYK     Append K to Y
                       e        And print its last element, K.

@AlexA. Спасибі! Необхідно додати Kдо Yдля збірки Y, яка необхідна в іншому місці. Однак я могла робити друк окремо, наприклад, aYKKзамість цього eaYK. Однак це 4 байти в будь-якому випадку.
isaacg

3

Юлія, 161 149 байт

n->(S(m)=!isempty(filter(i->i==unique(i)&&length(i)>1&&all(j->m%j<1,i),partitions(m)));for i=2:n S(i)&&!any(S,filter(k->i%k<1,1:i-1))&&println(i)end)

Це створює неназвану функцію, яка приймає ціле число як вхідне і друкує числа до STDOUT, розділених новим рядком. Щоб зателефонувати, дайте ім’я, наприклад f=n->....

Недоліки + пояснення:

# Define a function that determines whether the input is semiperfect
# (In the submission, this is defined as a named inline function within the
# primary function. I've separated it here for clarity.)

function S(m)
    # Get all integer arrays which sum to m
    p = partitions(m)

    # Filter the partitions to subsets of the divisors of m
    d = filter(i -> i == unique(i) && length(i) > 1 && all(j -> m % j == 0, i), p)

    # If d is nonempty, the input is semiperfect
    !isempty(d)
end

# The main function

function f(n)
    # Loop through all integers from 2 to n
    for i = 2:n
        # Determine whether i is semiperfect
        if S(i)
            # If no divisors of i are semiperfect, print i
            !any(S, filter(k -> i % k == 0, 1:i-1) && println(i)
        end
    end
end

Приклади:

julia> f(5)

julia> f(40)
6
20
28

3

JavaScript ( ES6 ) 172

Запустіть фрагмент нижче, щоб перевірити

f=
v=>eval("for(n=h=[];n++<v;!t*i&&n>1?h[n]=1:0){for(r=[l=i=t=1];++i<n;)n%i||(h[i]?t=0:l=r.push(i));for(i=0;t&&++i<1<<l;)r.map(v=>i&(m+=m)?t-=v:0,t=n,m=.5)}''+Object.keys(h)")


// Less golfed

ff=v=>
{
   h=[]; // hashtable with numbers found so far

   for (n=1; n <= v; n++)
   {
      r=[1],l=1; // r is the list of divisors, l is the length of this list
      t=1; // used as a flag, will become 0 if a divisor is in h
      for(i=2; i<n; i++)
      {
         if (n%i == 0)
            if (h[i])
               t = 0; // found a divisor in h, n is not primitive
            else
               l = r.push(i); // add divisor to r and adjust l
      }
      if (t != 0) // this 'if' is merged with the for below in golfed code
      { 
         // try all the sums, use a bit mask to find combinations
         for(i = 1; t != 0 && i < 1<<l; i++)
         {
            t = n; // start with n and subtract, if ok result will be 0 
            m = 0.5; // start with mask 1/2 (nice that in Javascript we can mix int and floats)
            r.forEach( v=> i & (m+=m) ? t -= v : 0);
         }
         if (t == 0 && n > 1) h[n] = 1; // add n to the hashmap (the value can be anything)
      }
   }
   // the hashmap keys list is the result
   return '' + Object.keys(h) // convert to string, adding commas
}

(test=()=> O.textContent=f(+I.value))();
<input id=I type=number oninput="test()" value=999><pre id=O></pre>


@ JörgHülsermann зробив, спасибі за те, що помітили
edc65

2

CJam, 54 байти

Це рішення здається трохи незручним, але оскільки відповідей було мало, і жодного в CJam, я подумав, що все-таки опублікую це:

Lli),2>{_N,1>{N\%!},_@&!\_,2,m*\f{.*:+}N#)e&{N+}&}fNS*

Добра частина приросту над розміщеним рішенням Pyth пов'язана з тим, що, наскільки я міг знайти, у CJam немає оператора, який би перелічував усі підмножини набору. Так що для завершення роботи з доступними операторами знадобилася певна робота. Звичайно, якщо насправді є простий оператор, якого я пропустив, я виглядатиму нерозумно. :)

Пояснення:

L     Start stack with empty list that will become list of solutions.
li    Get input N and convert to int.
),2>  Build list of candidate solutions [2 .. N].
{     Start for loop over all candidate solutions.
_     Copy list of previous solutions, needed later to check for candidate being primitive.
N,1>  Build list of possible divisors [1 .. N-1].
{N\%!},  Filter list to only contain actual divisors of N.
_     Check if one of divisors is a previous solution. Start by copying divisor list.
@     Pull copy of list with previous solutions to top of stack
&!    Intersect the two lists, and check the result for empty. Will be used later.
\     Swap top two elements, getting divisor list back to top.
_,    Get length of divisor list.
2,    Put [0 1] on top of stack.
m*    Cartesian power. Creates all 0/1 sequences with same length as divisor list.
\     Swap with divisor list.
f{.*:+}  Calculate element by element product of all 0/1 sequences with divisors,
         and sum up the values (i.e. dot products of 0/1 sequences with divisors).
         The result is an array with all possible divisor sums.
N#)  Find N in list of divisor sums, and covert to truth value.
e&   Logical and with earlier result from primitive test.
{N+}&  Add N to list of solutions if result is true.
}fN  Phew! We finally made it to the end of the for loop, and have a list of solutions.
S*   Join the list of solutions with spaces in between.

Спробуйте в Інтернеті


2

PHP, 263 байт

function m($a,$n){for($t=1,$b=2**count($a);--$b*$t;$t*=$r!=$n,$r=0)foreach($a as$k=>$v)$r+=($b>>$k&1)*$v;return$t;}for($o=[];$i++<$argn;m($d,$i)?:$o=array_merge($o,range($r[]=$i,3*$argn,$i)))for($d=[],$n=$i;--$n*!in_array($i,$o);)$i%$n?:$d[]=$n;echo join(",",$r);

Спробуйте в Інтернеті!

Розширено

function m($a,$n){ 
  for($t=1,$b=2**count($a);--$b*$t;$t*=$r!=$n,$r=0) #loop through bitmasks
    foreach($a as$k=>$v)$r+=($b>>$k&1)*$v; # loop through divisor array
  return$t;} # returns false for semiperfect numbers 
for($o=[];$i++<$argn;
m($d,$i)?
  :$o=array_merge($o,range($r[]=$i,3*$argn,$i))) # Make the result array and the array of multiples of the result array 
  for($d=[],$n=$i;--$n*!in_array($i,$o);) # check if integer is not in multiples array
    $i%$n?:$d[]=$n; # make divisor array
echo join(",",$r); #Output

1

Желе , 22 байти

ÆDṖŒPS€i
ÆDÇ€TL’
RÇÐḟY

Спробуйте в Інтернеті!

Пояснення

ÆDṖŒPS€i - helper function to check if input is a semiperfect number
ÆD       - list of divisors of input
  Ṗ      - except for the last one (the input)
   ŒP    - power set = every possible subset of divisors
     S€  - sum of each subset
       i - return truthy iff input is one of these

ÆDÇ€TL’ - helper function to check if input is a primitive semiperfect number
ÆD       - list of divisors of input
  ǀ     - replace each with if they are a semiperfect number, based on 
           the above helper function. If input is a primitive semiperfect 
           number, we get something like [0,0,0,0,0,94]. 
    T    - get all truthy values.
     L’  - return falsy iff there is only one truthy value

RÇÐḟY    - main link
R        - Range[input]
 ÇÐḟ     - Filter out those elements which are not primitive semiperfect
           numbers, based on the helper function
    Y    - join by newlines.
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.