하나 만들어서 하나 만들어


23

도전

양의 정수 목록이 주어지면 각 정수에서 최대 1 비트를 차지하는 순열이 있는지 확인하고 모든 1s 로 구성된 이진수를 만들 수 있습니다.

결과 이진수의 비트 수는 정수 목록에서 가장 높은 MSB 와 같습니다 .

산출

코드는 그러한 순열이 존재 하는지를 나타내는 참 / 거짓 값을 출력하거나 반환해야 합니다.

진실한 :

list [4, 5, 2]와 바이너리 표현으로 [100, 101, 10]각각 세 번째, 첫 번째 및 두 번째 비트를 사용하여 111다음 을 만들 수 있습니다 .

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

list를 사용하면 [3, 3, 3]모든 숫자에 첫 번째와 두 번째 비트가 모두로 설정되어 1있으므로 숫자를 선택하여 여유를 가질 수 있습니다.

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

팔시 :

list를 사용하면 [4, 6, 2]첫 번째 비트가로 설정된 1숫자가 없으므로 이진수를 만들 수 없습니다.

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

list를 사용하면 [1, 7, 1]숫자 중 하나만 두 번째와 세 번째 비트가로 설정되며 1숫자를 만들 수 없습니다.

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

분명히, 최대 세트 비트 수가 정수의 수를 초과하면 결과 수를 절대로 만들 수 없습니다.

테스트 사례

진실한 :

[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]

팔시 :

[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]

규칙

표준 허점 은 금지되어 있습니다. 이것이 이므로 가장 짧은 엔트리가 이깁니다!


이것에 도움이 될만한 정리 가 있습니다…
나무가 아님

PPCG에 오신 것을 환영합니다! 좋은 첫 도전!
Mr. Xcoder

@Notatree : 글쎄요. 가장 짧은 코드를 사용하여 아내를 찾을 수 있습니다.
Antti29

이분법 일치로 내 그래프 문제 색인에 추가되었습니다.
피터 테일러

답변:


8

젤리 , 11 바이트

BUT€ŒpṬz0PẸ

온라인으로 사용해보십시오!

작동 원리

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 바이트

모든 크레딧은 동료 인 Marshall에게 전달 됩니다.

이름없는 암묵적 접두사 기능.

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

온라인으로 사용해보십시오!

( @함수 구성)

#: 안티베이스 -2

|: 바꾸어 놓다

()^:2 다음 기능을 두 번 적용하십시오.

1- 부울 부정

>./ 최대치

@ 의

$ 축 길이

{. 에서 0으로 채움

|: 전치 된 논쟁

+./ .*"미친 결정적 마술" *

[: 후크하지 않음 (no-op – 이전 부분을 나머지 부분으로 구성하는 역할)


* 마샬의 말로.


6

자바 스크립트 (ES6), 104 ... 93 83 바이트

반환 0또는 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)))

테스트 사례

방법

입력 배열 A = [a 0 , a 1 , ..., N-1 ]가 주어지면 순열 [a p [0] , p [1] , ..., p [N- 1] ] 의 및 정수 X ≤ N 되도록 :

  • s = 1 + (a p [0] AND 2 0 ) + (a p [1] AND 2 1 ) + ... + ( p [x-1] AND 2 x-1 ) = 2 x
  • S는 최대 요소보다 큰 m

형식화 및 의견

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

껍질 , 14 바이트

SöV≡ŀToṁ∂Pmo↔ḋ

온라인으로 사용해보십시오!

설명

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 바이트

Mr.Xcoder 덕분에 -1 바이트

참 : 1, 거짓 : 0

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

온라인으로 사용해보십시오!

설명 :

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 바이트

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

온라인으로 사용해보십시오!

설명

#~IntegerDigits~2

모든 입력을 이진 목록으로 변환하는 것으로 시작합니다.

n=PadLeft[...]

그런 다음 모든 목록을 왼쪽에 0으로 채워서 배열을 직사각형으로 만듭니다. 결과는 n나중에 저장됩니다 .

Permutations[...]

야, 무차별 대입, 입력의 가능한 모든 순열을 얻자.

Tr/@...

이것은 각 순열에 대한 트레이스, 즉 순열의 대각선 요소의 합을 가져옵니다. 다시 말해, 첫 번째 숫자에서 MSB를, 두 번째 숫자에서 다음 MSB로 합산합니다. 순열이 유효하면이 값은 모두 1이 되고 가장 큰 입력 숫자가 1 만큼 큽니다.

Max[...]

추적은 유효한 순열 의 추적 보다 클 수 없으므로 최대 추적을 얻습니다 .

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

오른쪽은의 골프 버전입니다 Length @ First @ n. 즉, 사각형 배열의 너비와 가장 큰 입력 숫자의 너비를 얻습니다. 우리는 일부 순열의 흔적이 이것과 같은지 확인하고 싶습니다.


3

PHP, 255 (243) 160 바이트

-12 바이트,
Titus 덕분에 정렬 -83 바이트 (!)

<?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);}

온라인으로 사용해보십시오!

진실을 위해 1을 인쇄하고 거짓을 위해 아무것도 인쇄하지 않습니다.

풀리지 않은 원본 버전 :

<?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
      }
    }
  }
}

나는 그것을 테스트하지는 않았지만, 158 바이트는 동일하게해야합니다 :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);}
Titus

@Titus와 그래서 우리는 내가 codegolf에 얼마나 끔찍한 지 봅니다. 그리고 왜 대부분의 질문이 PHP에서 당신에게 큰 해답을 가지고 있습니까? (그리고 다른 몇 가지 언어).
조.

지금은 끔찍 해요 꽤 좋은 답변입니다. 골프 기술은 경험과 함께 제공됩니다.
Titus

긴 문자열 표기법이 필요하지 않습니다.“1”로 변환되지만 정수가 아닌 다른 것을 사용하십시오. 예를 들어 부울 true: die("1")die(!0).
manatwork

2

루아 5.2, 85 바이트

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

이는 x를 가변 개수의 입력 (32 비트 정수로 예상 됨)을 받아들이고 "true"또는 "false"로 stdout으로 인쇄하는 함수로 설정합니다.

용법:

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

1
흠, 이것은 잘못된 테스트 사례 중 일부에 실패한 것 같습니다. 예를 들어 대신에 [1,15,3,1]돌아 오는 것 같습니다 . 다음은 코드가 TIO의 온라인 컴파일러입니다. 실패한 다른 두 테스트 사례는 및 입니다. 다른 모든 테스트 사례는 올바른 결과를 출력합니다.truefalse[1,7,1][15,15,15]
케빈 크루이 센

2

PHP, 121 바이트

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);}

온라인으로 사용해보십시오 .

고장

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 바이트

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

'g =.'도 계산해야합니까? 추가 할 준비가되었습니다.

이번에는 긴 명시 동사입니다. 나는 같은 알고리즘에 대한 암묵적인 시도를 시도했지만 이것보다 더 길고 추한 것으로 판명되었습니다. Adám의 솔루션에서 멀리 떨어져 있습니다.

설명 : (y는 함수의 올바른 인수입니다)

                                             ,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

온라인으로 사용해보십시오!


1

파이썬 3 , 126120 바이트

Mr. Xcoder로 인해 6 바이트 절약

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)

온라인으로 사용해보십시오!


ungolfed 버전을 추가 할 수 있습니까?
Antti29

[0]+[...]무의미 ​​아닌가요? any(g(x[:i]+x[i+1:],n-1)for i in range(len(x))if x[i]&2**n)충분해야합니다.
Mr. Xcoder

@ Mr.Xcoder 그래, 내가 추가했을 때 최대 기능에 대해 생각하고 있었다
Halvard Hummel

1

젤리 , 17 바이트

BUz0Œ!ŒD€Ẏ
ṀBo1eÇ

숫자 목록을 가져 와서 1(거짓) 또는 0(거짓)을 반환하는 모나드 링크 .

온라인으로 사용해보십시오!

각 테스트 사례 중 가장 긴 시간 동안 TIO에서 시간이 초과됩니다.

방법?

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 바이트 221 바이트

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)}

온라인으로 사용해보십시오!

언 골프 버전

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
}

나는 drop=F논 로우 검사가 인수 로 불필요하다는 것을 깨달았습니다 . 또한 성가신 공백을 제거했습니다.


1

PHP, 152 바이트

<?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);

false는 1, true는 1을 인쇄합니다.

언 골프 드 :

<?

// 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 바이트

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

설명을 추가해 주시겠습니까? 또한 try it online링크가 유용합니다.
Antti29

C에서 골프를 할 때의 몇 가지 팁 : 1 / 많은 도전 (이것이 포함되어 있음)에서 전체 프로그램 대신 함수를 제출 할 수 있습니다 .2 / 진실 / 거짓 값을 출력해야합니다. 일관성이 있기 때문에 "false"/ "true"대신 0 / 1을 출력 할 수 있습니다. 마지막으로이 코드는 작동하지 않는 것 같습니다. [1, 7, 1]false [52, 114, 61, 19, 73, 54, 83, 29]를 반환하고 true를 반환해야합니다.
scottinet

네 말이 맞아, 내 나쁜
PrincePolka
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.