Prendine uno per crearne uno


23

Sfida

Dato un elenco di numeri interi positivi, scopri se esiste una permutazione in cui prendendo fino a un bit da ciascuno dei numeri interi, 1è possibile creare un numero binario composto da tutti gli s.

Il numero di bit nel numero binario risultante è uguale al MSB più alto nell'elenco di numeri interi.

Produzione

Il codice deve generare o restituire un valore di verità / falsità che indica se esiste una tale permutazione.

Esempi

Truthy:

Con l'elenco [4, 5, 2]e la sua rappresentazione binaria [100, 101, 10], possiamo usare il terzo, il primo e il secondo bit, rispettivamente, per creare 111:

4  ->  100  ->  100  ->  1
5  ->  101  ->  101  ->    1
2  ->  010  ->  010  ->   1
Result                   111

Con l'elenco [3, 3, 3], tutti i numeri hanno sia il primo che il secondo bit impostati come 1, quindi possiamo scegliere con un numero di riserva:

3  ->  11  ->  11  ->  1
3  ->  11  ->  11  ->   1
3  ->  11  ->  11  ->
Result                 11

Falsey:

Con l'elenco [4, 6, 2], nessuno dei numeri ha il primo bit impostato come 1, quindi il numero binario non può essere creato:

4  ->  100
6  ->  110
2  ->  010

Con l'elenco [1, 7, 1], solo uno dei numeri ha il secondo e il terzo bit impostati come 1e il numero non può essere creato:

1  ->  001
7  ->  111
1  ->  001

Ovviamente, se il numero massimo di bit impostati supera il numero di numeri interi, il numero del risultato non potrà mai essere creato.

Casi test

Truthy:

[1]
[1, 2]
[3, 3]
[3, 3, 3]
[4, 5, 2]
[1, 1, 1, 1]
[15, 15, 15, 15]
[52, 114, 61, 19, 73, 54, 83, 29]
[231, 92, 39, 210, 187, 101, 78, 39]

Falsey:

[2]
[2, 2]
[4, 6, 2]
[1, 7, 1]
[15, 15, 15]
[1, 15, 3, 1]
[13, 83, 86, 29, 8, 87, 26, 21]
[154, 19, 141, 28, 27, 6, 18, 137]

Regole

Sono vietate le scappatoie standard . Dato che si tratta di , vince l'ingresso più breve!


C'è un teorema che potrebbe aiutare in questo ...
Non un albero il

Benvenuti in PPCG! Bella prima sfida!
Mr. Xcoder,

@Notatree: Beh, che bello. Posso usare il codice più breve per trovarmi una moglie.
Antti29,

Aggiunto al mio indice dei problemi del grafico come corrispondenza bipartita.
Peter Taylor,

Risposte:


8

Gelatina , 11 byte

BUT€ŒpṬz0PẸ

Provalo online!

Come funziona

BUT€ŒpṬz0PẸ  Main link. Argument: A (array)

             Example: A = [4, 5, 2]
B            Binary; convert each n in A to base 2.
                      [[1, 0, 0], [1, 0, 1], [1, 0]]
 U           Upend; reverse all arrays of binary digits.
                      [[0, 0, 1], [1, 0, 1], [0, 1]]
  T€         Truth each; for each binary array, get all indices of 1's.
                      [[3], [1, 3], [2]]
    Œp       Take the Cartesian product of all index arrays.
                      [[3, 1, 2], [3, 3, 2]
      Ṭ      Untruth; map each index array to a binary arrays with 1's at
             at the specified indices.
                      [[1, 1, 1], [0, 1, 1]]
       z0    Zip/transpose the resulting 2D array, filling shorter rows with 0's.
                      [[1, 0], [1, 1], [1, 1]]
         P   Take the columnwise product.
                      [1, 0]
          Ẹ  Any; yield 1 if any of the products is non-zero, 0 otherwise.
                      1

7

J , 30 byte

Tutto il merito va al mio collega Marshall .

Prefisso tacito senza nome.

[:+./ .*(1->./@${.|:)^:2@|:@#:

Provalo online!

( @è la composizione della funzione)

#: antibase-2

|: trasporre

(... )^:2 applica due volte la seguente funzione:

1- Negazione booleana

>./ il massimo

@ del

$ lunghezze degli assi

{. take (riempimento con zeri) da

|: l'argomento trasposto

+./ .*"folle magia determinante" *

[: non agganciare (no-op - serve a comporre la parte precedente con il resto)


* Nelle parole di Marshall.


6

JavaScript (ES6), 104 ... 93 83 byte

Restituisce 0o 1.

f=(a,m=Math.max(...a),s=1)=>s>m|a.some((n,i)=>n&s&&f(b=[...a],m,s*2,b.splice(i,1)))

Casi test

Metodo

Dato l'array di input A = [a 0 , a 1 , ..., a N-1 ] , cerchiamo una permutazione [a p [0] , a p [1] , ..., a p [N- 1] ] di A e un numero intero x ≤ N tale che:

  • s = 1 + (a p [0] AND 2 0 ) + (a p [1] AND 2 1 ) + ... + (a p [x-1] AND 2 x-1 ) = 2 x
  • e s è maggiore del massimo elemento m di A

Formattato e commentato

f = (                 // f = recursive function taking:
  a,                  //   - a = array
  m = Math.max(...a), //   - m = greatest element in a
  s = 1               //   - s = current power of 2, starting at 1
) =>                  //
  s > m               // success condition (see above) which is
  |                   // OR'd with the result of this some():
  a.some((n, i) =>    // for each element n at position i in a:
    n & s &&          //   provided that the expected bit is set in n,
    f(                //   do a recursive call with:
      b = [...a],     //     b = copy of a
      m,              //     m unchanged
      s * 2,          //     s = next power of 2
      b.splice(i, 1)  //     the current element removed from b
    )                 //   end of recursive call
  )                   // end of some()

4

Buccia , 14 byte

SöV≡ŀToṁ∂Pmo↔ḋ

Provalo online!

Spiegazione

SöV≡ŀToṁ∂Pmo↔ḋ  Implicit input, say [4,5,2].
          m  ḋ  Convert each to binary
           o↔   and reverse them: x = [[0,0,1],[1,0,1],[0,1]]
         P      Take all permutations of x
      oṁ∂       and enumerate their anti-diagonals in y = [[0],[0,1],[1,0,0],[1,1],[1]..
S    T          Transpose x: [[0,1,0],[0,0,1],[1,1]]
    ŀ           Take the range up to its length: z = [1,2,3]
                Then z is as long as the longest list in x.
 öV             Return the 1-based index of the first element of y
   ≡            that has the same length and same distribution of truthy values as z,
                i.e. is [1,1,1]. If one doesn't exist, return 0.

4

05AB1E , 23 22 20 byte

-1 byte grazie a Mr.Xcoder

Vero: 1, Falso: 0

2вí0ζœεvyƶNè})DgLQ}Z

Provalo online!

spiegazioni:

2вí0ζœεvyƶNè})DgLQ}Z   Full program (implicit input, e.g. [4, 6, 2])
2в                     Convert each to binary ([1,0,0], [1,1,0], [1,0])
  í                    Reverse each ([0,0,1], [0,1,1], [0,1])
   0ζ                  Zip with 0 as a filler ([0,0,0],[0,1,1],[1,1,0])
     œ                 Get all sublists permutations
      ε           }    Apply on each permutation...
       vyƶNè}            For each sublist...
        yƶ                  Multiply each element by its index
          Nè                Get the element at position == sublist index
             )           Wrap the result in a list
              DgLQ       1 if equal to [1,2,...,length of item]
                   Z   Get max item of the list (1 if at least 1 permutations fill the conditions)
                       -- implicit output

3

Wolfram Language (Mathematica) , 65 byte

Max[Tr/@Permutations[n=PadLeft[#~IntegerDigits~2]]]==Tr[1^#&@@n]&

Provalo online!

Spiegazione

#~IntegerDigits~2

Iniziamo convertendo tutti gli input in elenchi binari.

n=PadLeft[...]

Quindi riempiamo tutti quegli elenchi con zeri a sinistra per rendere la matrice rettangolare. Il risultato viene archiviato nper dopo.

Permutations[...]

Sì, forza bruta, otteniamo tutte le possibili permutazioni dell'input.

Tr/@...

Questo ottiene la traccia per ogni permutazione, cioè la somma degli elementi diagonali nella permutazione. In altre parole, sommiamo l'MSB dal primo numero, il successivo a MSB dal secondo numero e così via. Se la permutazione è valida, tutti questi saranno 1 e ci saranno 1 s quanti il ​​numero di input più grande è largo.

Max[...]

Otteniamo la massima traccia, perché la traccia non può mai essere più di quella di una permutazione valida.

...==Tr[1^#&@@n]

Il lato destro è solo una versione da golf di Length @ First @ n, ovvero ottiene la larghezza della matrice rettangolare e quindi la larghezza del numero di input più grande. Vogliamo assicurarci che la traccia di alcune permutazioni sia uguale a questa.


3

PHP, 255 243 160 byte

-12 byte, eliminato l'ordinamento
-83 byte (!) Grazie a Tito

<?function f($a,$v=NULL,$b=[]){($v=$v??(1<<log(max($a),2)+1)-1)||die("1");if($p=array_pop($a))while($p-=$i)($b[$i=1<<log($p,2)]|$v<$i)||f($a,$v-$i,[$i=>1]+$b);}

Provalo online!

Stampa 1 per verità, niente per falsità.

Versione originale non golfata:

<?php
unset($argv[0]);                                                   // remove filename from arguments
$max = pow(2,floor(log(max($argv),2))+1)-1;                        // get target number (all bits set to 1)
solve($argv,$max,[]);
function solve($array,$value,$bits){
  if(!$value){                                                     // if we've reached our target number (actually subtracted it to zero)
    die("1");                                                      // print truthy
  }
  if(count($array)){                                               // while there are arguments left to check
    $popped = array_pop($array);                                   // get the largest argument
    while($popped > 0 && ($mybit = pow(2,floor(log($popped,2))))){ // while the argument hasn't reached zero, get the highest power of 2 possible
      $popped -= $mybit;                                           // subtract power from argument
      if($value >= $mybit && !$bits[$i]){                          // if this bit can be subtracted from our argument, and we haven't used this bit yet
        $copy = $bits;                                             // create a copy to pass to the function
        $copy[$mybit] = 1;                                         // mark the bit as used in the copy
        solve($array,$value-$mybit,$copy);                         // recurse
      }
    }
  }
}

Non l'ho provato, ma questi 158 byte dovrebbero fare lo stesso:function f($a,$v=NULL,$b=[]){($v=$v??(1<<log(max($a),2)+1)-1)||die("1");if($p=array_pop($a))while($p-=$i)($b[$i=1<<log($p,2)]|$v<$i)||f($a,$v-$i,[$i=>1]+$b);}
Tito

@Titus e quindi vediamo quanto sono terribile con Codegolf. E perché la maggior parte delle domande ha un'ottima risposta da parte tua in PHP. (e poche altre lingue).
Jo.

Terribile per ora. Questa è una risposta abbastanza buona; e le abilità di golf vengono con esperienza.
Tito

Non è necessaria la lunga notazione di stringhe, basta usare qualcos'altro che si traduce in "1" ma non è un numero intero. Ad esempio un booleano true: die("1")die(!0).
arte

2

Lua 5.2, 85 byte

m=math
x=function(...)print(bit32.bor(...)==2^(m.floor(m.log(m.max(...),2))+1)-1)end

Questo imposta x per essere una funzione che accetta un numero variabile di input (si prevede che siano numeri interi a 32 bit) e stampa su stdout "vero" o "falso".

Uso:

x(13, 83, 86, 29, 8, 87, 26, 21) -- Prints "false"

1
Hmm, questo sembra fallire per alcuni dei falsi casi di test? [1,15,3,1]sembra tornare trueinvece che falseper esempio. Ecco il tuo codice il compilatore online di TIO. Gli altri due casi di test che falliscono sono [1,7,1]e [15,15,15]. Tutti gli altri casi di test producono risultati corretti.
Kevin Cruijssen,

2

PHP, 121 byte

function f($a,$s=0){($v=array_pop($a))||(0|$g=log($s+1,2))-$g||die("1");for($b=.5;$v<=$b*=2;)$v&$b&&~$s&$b&&f($a,$s|$b);}

Provalo online .

abbattersi

function f($a,$s=0)
{
    ($v=array_pop($a))          # pop element from array
    ||                          # if nothing could be popped (empty array)
    (0|$g=log($s+1,2))-$g       # and $s+1 is a power of 2
        ||die("1");                 # then print "1" and exit
    for($b=.5;$v>=$b*=2;)       # loop through the bits:
        $v&$b                       # if bit is set in $v
        &&~$s&$b                    # and not set in $s
            &&f($a,$s|$b);              # then set bit in $s and recurse
}

2

J , 49 byte

g=.3 :'*+/*/"1+/"2((#y){.=i.{:$#:y)*"2#:(i.!#y)A.,y'

Devo contare anche 'g =.'? Sono pronto per aggiungerlo.

Un lungo verbo esplicito questa volta. Ne ho provato uno tacito per lo stesso algoritmo, ma si è rivelato ancora più lungo e brutto di così. Lontano dalla soluzione di Adám.

Spiegazione: (y è l'argomento corretto della funzione)

                                             ,y - adds a leading axis to the argument 
                                             (if it's scalar becomes an array of length 1)
                                          .A    - finds the permutations according to the left argument
                                   (i.!#y)      - factorial of the length of the argument, for all permutations
                                 #:             - convert each element to binary
                             *"2                - multiply each cell by identity matrix
           (                )                   - group 
                   =i.{:$#:y                    - identity matrix with size the length
                                                  of the binary representation of the argument 
             (#y){.                             - takes as many rows from the identity matrix 
                                                  as the size of the list (pad with 0 if neded)
    */"1+/"2                                    - sums the rows and multiplies the items
                                                  to check if forms an identity matrix
 *+/                                            - add the results from all permutations and
                                                  returns 1 in equal or greater then 1

Provalo online!


1

Python 3 , 126 120 byte

6 byte salvati grazie a Mr. Xcoder

lambda x:g(x,max(map(len,map(bin,x)))-3)
g=lambda x,n:n<0 or any(g(x[:i]+x[i+1:],n-1)for i in range(len(x))if x[i]&2**n)

Provalo online!


Potresti aggiungere una versione non golfata?
Antti29,

[0]+[...]È inutile vero? any(g(x[:i]+x[i+1:],n-1)for i in range(len(x))if x[i]&2**n)dovrebbe bastare.
Mr. Xcoder,

@ Mr.Xcoder Sì, immagino che stavo pensando alla funzione massima quando l'ho aggiunta
Halvard Hummel,

1

Gelatina , 17 byte

BUz0Œ!ŒD€Ẏ
ṀBo1eÇ

Un collegamento monadico che prende un elenco di numeri e che restituisce 1(verità) o 0(falsità).

Provalo online!

Questo scadrà su TIO per il più lungo di ciascuno dei casi di test.

Come?

BUz0Œ!ŒD€Ẏ - Link 1, possibilities (plus some shorter ones & duplicates): list of numbers
                                     e.g. [4, 5, 2]
B          - to binary list (vectorises)  [[1,0,0],[1,0,1],[1,0]]
 U         - upend                        [[0,0,1],[1,0,1],[0,1]]
   0       - literal zero                  0
  z        - transpose with filler        [[0,1,0],[0,0,1],[1,1,0]]
    Œ!     - all permutations             [[[0,1,0],[0,0,1],[1,1,0]],[[0,1,0],[1,1,0],[0,0,1]],[[0,0,1],[0,1,0],[1,1,0]],[[0,0,1],[1,1,0],[0,1,0]],[[1,1,0],[0,1,0],[0,0,1]],[[1,1,0],[0,0,1],[0,1,0]]]
      ŒD€  - diagonals of €ach            [[[0,0,0],[1,1],[0],[1],[0,1]],[[0,1,1],[1,0],[0],[0],[1,0]],[[0,1,0],[0,0],[1],[1],[0,1]],[[0,1,0],[0,0],[1],[0],[1,1]],[[1,1,1],[1,0],[0],[0],[0,0]],[[1,0,0],[1,1],[0],[0],[0,1]]]
         Ẏ - tighten                      [[0,0,0],[1,1],[0],[1],[0,1],[0,1,1],[1,0],[0],[0],[1,0],[0,1,0],[0,0],[1],[1],[0,1],[0,1,0],[0,0],[1],[0],[1,1],[1,1,1],[1,0],[0],[0],[0,0],[1,0,0],[1,1],[0],[0],[0,1]]

ṀBo1eÇ - Main link: list of numbers  e.g. [4, 5, 2]
Ṁ      - maximum                           5
 B     - to binary list                   [1,0,1]
   1   - literal one                       1
  o    - or (vectorises)                  [1,1,1]
     Ç - last link as a monad             [[0,0,0],[1,1],[0],[1],[0,1],[0,1,1],[1,0],[0],[0],[1,0],[0,1,0],[0,0],[1],[1],[0,1],[0,1,0],[0,0],[1],[0],[1,1],[1,1,1],[1,0],[0],[0],[0,0],[1,0,0],[1,1],[0],[0],[0,1]]
    e  - exists in?                        1    --------------------------------------------------------------------------------------------------------------^

1

R , 247 byte 221 byte

function(i){a=do.call(rbind,Map(`==`,Map(intToBits,i),1));n=max(unlist(apply(a,1,which)));any(unlist(g(a[,1:n,drop=F],n)))}
g=function(a,p){if(p==1)return(any(a[,1]));Map(function(x){g(a[x,,drop=F],p-1)},which(a[,p])*-1)}

Provalo online!

Versione Ungolfed

f=function(i){                                   #anonymous function when golfed
  a=do.call(rbind,Map(`==`,Map(intToBits,i),1))  #convert integers to binary, then logical
                                                 #bind results together in matrix
  n=max(unlist(apply(a,1,which)))                #determine max number of bits
  any(unlist(g(a[,1:n,drop=F],n)))               #apply recursive function
}

g=function(a,p){
  if(p==1)return(any(a[,1]))                   #check if first bit is available still
  Map(function(x){g(a[x,,drop=F],p-1)},which(a[,p])*-1) #strip row used for current bit
                                                        #and apply the function recursively
}

Mi sono reso conto che il controllo senza riga non era necessario con gli drop=Fargomenti. Inoltre rimosso alcuni fastidiosi spazi bianchi.


1

PHP, 152 byte

<?function b($a,$b,$s){$a[$s]=0;$r=$b-1;foreach($a as$i=>$v)if($v&1<<$b)$r=max(b($a,$b+1,$i),$r);return$r;}$g=$argv;$g[0]=0;echo!(max($g)>>b($g,0,0)+1);

Non stampa nulla per falso, 1 per vero.

Ungolfed:

<?

// Search an array for a value having a bit set at the given bit index.
// For each match, search for a next higher bit index excluding the current match.
// This way it "climbs up" bit by a bit, finally returning the highest bit index reached.
function bitSearch($valArr, $bitInd, $skipInd) {
    unset($valArr[$skipInd]);
    $result = $bitInd - 1;
    foreach ($valArr as $ind => $v) {
        if ($v & (1 << $bitInd)) {
            $result = max(bitSearch($valArr, $bitInd + 1, $ind), $result);
        }
    }
    return $result;
}

$argv[0] = 0;
$r = bitSearch($argv, 0, 0);
// Check if the highest bit index reached was highest in the largest value given.
if (max($argv) >> ($r + 1)) {
    echo("False\n");
} else {
    echo("True\n");
}


0

C, 79 byte

b,i;main(a){for(;~scanf("%d",&a);i++)b|=a;puts("false\0true"+(b==(1<<i)-1)*6);}

Potresti aggiungere una spiegazione? Inoltre, try it onlinesarebbe utile un collegamento.
Antti29,

Alcuni consigli quando si gioca a golf in C: 1 / in molte sfide (inclusa questa), è possibile inviare una funzione anziché un programma completo, 2 / è necessario emettere un valore di verità / falsità, questo può essere tutto il tempo poiché è coerente (è possibile generare 0/1 anziché "false" / "true"). Infine, questo codice non sembra funzionare: [1, 7, 1]dovrebbe restituire false e [52, 114, 61, 19, 73, 54, 83, 29]dovrebbe restituire true
scottinet

Hai ragione, mio ​​cattivo
PrincePolka,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.