Biplex: एक महत्वपूर्ण बेकार ऑपरेटर


33

इनपुट

  • 1 और 255 पॉजिटिव पूर्णांकों (समावेशी) के बीच की सूची, प्रत्येक की सीमा 1 से 2 में 32 - 1 (समावेशी) है।
  • आपके इनपुट प्रारूप को परीक्षण मामलों के समान होने की आवश्यकता नहीं है।
  • अग्रणी शून्य के बिना इनपुट को स्वीकार करना आवश्यक है।
  • अग्रणी शून्य के साथ इनपुट को स्वीकार करने की आवश्यकता नहीं है।
  • पूर्णांक के बीच आप जो भी परिसीमन चाहते हैं उसका उपयोग कर सकते हैं।
  • एक पूर्णांक को एक स्ट्रिंग द्वारा दर्शाया जा सकता है लेकिन एक विशिष्ट पूर्णांक के अलग-अलग अंक को सन्निहित होना चाहिए।
  • आप इनपुट के लिए किसी भी आधार का उपयोग करना चुन सकते हैं (बाइनरी और अनरीरी सहित), बशर्ते आउटपुट भी उस बेस में हो।

उत्पादन

  • एक एकल पूर्णांक।
  • आउटपुट में कोई अग्रणी शून्य नहीं होना चाहिए।
  • आउटपुट इनपुट के समान बेस में होना चाहिए।
  • आउटपुट की गणना आपकी इच्छानुसार की जा सकती है लेकिन निम्नलिखित गणना के परिणाम से मेल खाना चाहिए:

बाइप्लेक्स की गणना

  • एक द्विआधारी प्रतिनिधित्व के बिट्स शून्य से शुरू होने वाले दाईं ओर से गिने जाते हैं, इसलिए बिट मैं 2 i का प्रतिनिधित्व करने वाले कॉलम में है ।
  • मैं वें bitsum का योग है मैं वें इनपुट संख्या में से प्रत्येक की बाइनरी अभ्यावेदन के टुकड़े।
  • Bitsum अधिकतम उच्चतम मूल्य bitsums द्वारा उठाए गए है।
  • Bitsum न्यूनतम सबसे कम है गैर शून्य मूल्य bitsums द्वारा उठाए गए।
  • मैं वें उत्पादन की बाइनरी प्रतिनिधित्व के अंकों है:
    • 1 यदि i वें बिटसम अधिकतम बिट्सम के बराबर है या बिट्सम न्यूनतम है।
    • 0 अन्यथा।

काम का उदाहरण

यह उदाहरण इनपुट और आउटपुट के लिए बाइनरी का उपयोग करता है।

Input:    100110
         1101110
         1100101
         _______
Bitsums: 2301321

Output:   101101

बिट्सम अधिकतम 3 है और बिट्सम न्यूनतम 1 है, इसलिए आउटपुट में हर जगह 1 एस है कि बिट्सम 3 या 1 है, और 0 एस हर जगह है।


परीक्षण के मामलों

टेस्ट मामले फॉर्म में हैं:

Input => Output

बाइनरी में परीक्षण के मामले:

[1] => 1
[10] => 10
[1, 10, 101] => 111
[11111111111111111111111111111111] => 11111111111111111111111111111111
[10010010010010010010010010010010, 10101010101010101010101010101010, 11011011011011011011011011011011] => 11100011100011100011100011100011
[10001011100010100110100101001001, 10110000111110010000111110111010, 1101110001101101011010010100101, 1010101010001011101001001010101] => 11 

दशमलव में समान परीक्षण मामले:

[1] => 1
[2] => 2
[1, 2, 5] => 7
[4294967295] => 4294967295
[2454267026, 2863311530, 3681400539] => 3817748707
[2341103945, 2969112506, 1849078949, 1430639189] => 3

लीडरबोर्ड

मार्टिन के लीडरबोर्ड स्निपेट के लिए धन्यवाद


चैट में चर्चा के बाद ऑपरेटर को बिप्लेक्स नाम दिया गया, जो बाइनरी प्लेन एक्स्ट्रेमा के लिए छोटा था ।


क्या हमें उदाहरण में, बाइनरी में इनपुट की आवश्यकता हो सकती है?
फ़ेरसम 13

1
@ दोष You may choose to use any base for input and output (including binary and unary), provided they are both in the same base। तो हाँ, इसके लिए जाएं :)
ट्राइकोप्लाक्स

क्या हम [[1,0,1], [1,1,0,0], [1,0,0,1]] जैसे नोटेशन का उपयोग कर सकते हैं?
अकांगका

शायद ऩही। सबसे प्रतिबंधक एक मान लें।
अक्काका

@ChristianIrwan इनपुट पूर्णांकों (प्रत्येक सन्निहित अंकों से बना) के रूप में होना चाहिए। पूर्णांक को एक स्ट्रिंग के रूप में दर्शाया जा सकता है लेकिन अंकों के बीच कोई विभाजक नहीं होना चाहिए।
ट्राइकोप्लाक्स

जवाबों:


1

जेली, गैर-प्रतिस्पर्धात्मक

14 बाइट्स यह जवाब गैर-प्रतिस्पर्धात्मक है क्योंकि चुनौती जेली के निर्माण से पहले की है।

BUSµḟ0Ṣ.ịe€@UḄ

इसे ऑनलाइन आज़माएं!

यह काम किस प्रकार करता है

BUSµḟ0Ṣ.ịe€@UḄ    Main link. Input: A (list)

B                 Convert each item in A to binary.
 U                Reverse each array of binary digits.
  S               Add them across columns.

   µ              Monadic chain. Argument: S (list of column sums)
    ḟ0            Remove all occurrences of 0.
      Ṣ           Sort the remaining sums.
       .ị         Take the elements with indices around 0.5.
                  Indices are 1-bases, so this selects the last and the first one.
             U    Yield S, reversed.
            @     Reverse the arguments.
         e€       Test each item in the left list for membership in the right one.
              Ḅ   Convert from binary to integer.                

हालाँकि, इसका न्याय करने के तरीके पर बिल्कुल असहमति है, लेकिन यह मेटा प्रश्न बताता है कि जब यह भाषा भाषा के निर्माण को चुनौती देती है, तो समुदाय गैर-प्रतिस्पर्धी के रूप में उत्तर नहीं देने के पक्ष में है। इसलिए मैं इस उत्तर को स्वीकार कर रहा हूं।
ट्राइकोप्लेक्स

11

अजगर, २६ 25 बाइट्स

JsM.T_MjR2Qi_}RhM_BS-J0J2

इसे ऑनलाइन आज़माएँ: प्रदर्शन या टेस्ट सूट

व्याख्या

JsM.T_MjR2Q
       jR2Q      convert each input number to binary (lists of 1s and 0s)
     _M          reverse each list
   .T            transpose (with top justify)
 sM              sum up each list (numbers of 1s at each position)
J                store this list in J

i_}RhM_BS-J0J2
         -J0     J without 0s
        S        sorted
      _B         create the list [sorted, reverse(sorted)]
    hM           take the first elments of each (bitsum-min and bitsum-max)
  }R        J    check for each value in J, if it is part of ^
 _               reverse this list of booleans
i            2   convert from binary to base 10 and print

1
_Bउपयोग शानदार है
isaacg

9

जे, 31 30 24 23 21 बाइट्स

+/(e.>./,<./@#~@)&.#:

यह एक tacit, monadic क्रिया है जो दशमलव पूर्णांक की एक सूची लेता है और उनके दशमलव द्विपद को लौटाता है।

उनके सुझावों के लिए @Zgarb को धन्यवाद, जिसने सीधे 4 बाइट्स को बचाया और 2 और के लिए मार्ग प्रशस्त किया!

2 और बाइट्स बंद करने के लिए @randomra को धन्यवाद!

परीक्षण के मामलों

   biplex =: +/(e.>./,<./@#~@)&.#:

   biplex ,1
1
   biplex ,2
2
   biplex 1 2 5
7
   biplex ,4294967295
4294967295
   biplex 2454267026 2863311530 3681400539
3817748707
   biplex 2341103945 2969112506 1849078949 1430639189
3

यह काम किस प्रकार करता है

                 &.    Dual. Apply the verb to the right, the verb to the left,
                       and finally the inverse of the verb to the right.
                   #:  Convert the input list from integer to base 2.
  (            @)      Define an adverb, i.e., an operator that takes a verb as
                       its left argument.
+/                     Call it with "reduce by sum". This calculates the sum of
                       the corresponding binary digits of all integers before
                       executing the remainder of the adverb's body, i.e, this:
             #~          Replicate the sum N a total of N times, i.e., turn
                         0 1 2 3 into 1 2 2 3 3 3. This eliminates zeroes.
         <./@            Calculate the minimum of the result.
     >./                 Calculate the maximum of the sums.
        ,                Append; wrap both extrema into a list.
   e.                    Check if each of the sums is in the list of extrema.
                         This yields 1 if yes and 0 if no.
                       (from &.) Convert from base 2 to integer.

9

मिंकोलंग 0.10 , 109 79 बाइट्स

(n1$(d2%$r2:d)99*I-DmI2:[+1R]$I)rI$d$(s0(x0gd,)Ik3R2g1-X0I3-[2*2gd0c=$r1c=++]N.

इनपुट और आउटपुट दशमलव में हैं। इसे यहाँ आज़माएँ।

व्याख्या

(                            $I)    Loop until input is empty
 n                                  Read in number from input
  1$(       d)                      Start a while loop with only the top of stack
     d2%                            Next least-significant bit (modulo by 2)
        $r                          Swap top two values
          2:                        Divide by 2
              99*I-D                Pad with 0s
                                    (when the while loop exits, top of stack is 0)
                    m               Merge (interleave) stack
                     I2:[   ]       For each pair...
                         +1R        Add and rotate stack to the right
                                    <<This does the work of computing bitsums>>

r       Reverse stack
 I      Push length of stack
  $d    Duplicate whole stack
        <<This lets me sort the bitsums without affecting the original order>>

$(                      Start while loop with <top of stack> elements
  s                     Sort
   0(     )             Push a 0 and start another while loop
     x                  Dump top of stack
      0g                Get front of stack and put it on top
        d,              Duplicate and <not> for end-while condition check
           Ik           Push length of stack and break out of while loop
             3R         Rotate [min, max, length] to front
               2g1-     Get length and put it on top, then subtract 1
                   X    Dump that many elements off the top of stack
                        <<Now I have min and max>>

0                        Initialize decimal with 0    
 I3-[               ]    For as many bits as there are...
     2*                  Multiply by 2
       2gd               Get the next most significant bit and put it on top
          0c=            Copy min and check for equality
             $r          Swap top two elements of stack
               1c=       Copy max and check for equality
                  ++     Add 1 if bitsum item is equal to min or max, 0 otherwise
N.                       Output as integer and stop

पुराना संस्करण:

$nI[(d2%i1+0a+i1+0A00ai`4&i00A2:d)x]00a1+[i1+0a]s0(x0gd,)rI2-[x]00a1+[i1+0ad0c=$r1c=+]0gx0gx0(xd,)0I1-[2*+]N.

यहाँ कोशिश करो!

व्याख्या

इसका क्रैक्स यह है कि बिट्स को स्टोर करने के लिए ऐरे फीचर का बहुत अधिक उपयोग किया जाता है ( a Aजिनमें से न्यूनतम और अधिकतम पाए जाते हैं, फिर 1एस और 0एस को उचित रूप से आउटपुट किया जाता है, जिसमें 0दो स्थानों पर अग्रणी एस डंपिंग होता है ।

$n                                      Read in whole input as integers
  I[(                             x]    Convert each number to binary
     d2%                                Get next least significant bit (modulo by 2)
        i1+0a                           Get current value in array for that position
             +                          Add
              i1+0A                     Put current value in array for that position
                   00ai`                Get first value of array (bitsum length)
                      i`                Greater than loop counter?
                        4&i00A          If not, put loop counter there
                              2:        Divide by 2
                                d)      If 0, exit loop

00a                Get first value of array (maximum length
   1+              Add one
     [i1+0a]       Get bitsum values from array and push on stack
            s      Sort
0(                 Push a 0 (for dump) and start a while loop -- dumps leading 0s
  x                Dump top of stack
   0g              Get bottom of stack
     d,            Duplicate and <not> it
       )           Exit loop when top of stack is non-zero (i.e., the minimum)
        r          Reverse stack (so now it's [min, max, <stuff>])
         I2-[x]    Dump everything else

00a1+[               ]    Get bitsum length and loop that many times
      i1+0a               Get bitsum value at current position
           d              Duplicate
            0c=           Copy front of stack and check for equality
               $r         Swap
                 1c=      Copy next-to-front of stack and check for equality
                    +     Add (so it's 1 if it's equal to min or max, 0 otherwise)

0gx0gx       Dump front two elements of stack (the min and max)
0(xd,)       Dump leading 0s
0            Push 0 for conversion to decimal
 I1-[   ]    For each bit...
     2*+     Multiply by 2 and add
N.           Output as integer and stop

ऑनलाइन दुभाषिया से, क्या यह दशमलव इनपुट लेता है और बाइनरी आउटपुट देता है?
ट्राइकोप्लाक्स

हाँ। क्या मुझे इसे बदलने की आवश्यकता है?
एल'एंडिया स्ट्रोमैन

1
आह, मैं इसे बुलेट पॉइंट्स में ढूंढ रहा था और पहले ही वाक्य में यह छूट गया। मैं इसे आज ही ठीक करूँगा।
एल'एंडिया स्ट्रोमैन

1
फिक्स्ड! और केवल दो अतिरिक्त बाइट्स के साथ! : डी
एल'एंडिया स्ट्रोमैन

1
आपने मेरी +1 अर्जित की है; मैं Minkolang के बारे में जानने के लिए खुश हूँ।
lirtosiast

8

ब्रेनफक , 619 बाइट्स

पहले जवाब में बहुत दूर यहाँ, तो मैंने सोचा कि मैं एक अच्छा करूँगा!

>->->->>>,----------[--<++++++[>------<-]>>>>,----------]-<<<+[-<<<+]->>,<++++[>--------<-]>[<++++[>+++++<-]>++[--<++++++[>------<-]>>>+>]<-[+>-<<+[-<<<+]-<<+[->+[->[-[->>>+<<<]<<<+]+[-->>>++]-<+]<<<+[-[->+<]<<<+]->>+>]<-[+>->>>>+[->>>+]->+[-<[-[->>>+<<<]<<<+]+[-->>>++]->+]-<+<<<+[-[->+<]<<<+]->>]]>,<++++[>--------<-]>]>+[->>>+]>->->>-[+<<<<<<+[-<-<<+]->>[+>>>[>>>]>+[<<->>[->>>+]->>>[-]+<<<<<+[-<<<+]+>->]<]>->>+>-]<[<<<<<+[-<+<<+]->>[-]>+[->>>+]->>-]>-[+<<<<<<+[-<+<<+]->>[->>>[>>>]>+[<<<->>>[->>>+]->>>[-]+<<<<<<+[-<<<+]+>>+>]<]>->>>-]<<<<-<<<<+[->[-]<[->+<]<[->>[-]+<<]<<+]>-[+>>>-]++[->++++++[-<++++++++>]<.>>>+]

क्या ... क्या मैं जीत गया?

यह कार्यक्रम 10हर बाइनरी संख्या के बाद नईलाइन्स (ASCII ) की उम्मीद करता है , और 32अंत में एक स्थान (ASCII ) की आवश्यकता होती है ।

टेस्ट रन:

Me$ bf bpx.bf
1
10
101

111

Me$ bf bpx.bf
11111111111111111111111111111111

11111111111111111111111111111111

Me$ bf bpx.bf
10010010010010010010010010010010
10101010101010101010101010101010
11011011011011011011011011011011

11100011100011100011100011100011

Me$ bf bpx.bf
10001011100010100110100101001001
10110000111110010000111110111010
1101110001101101011010010100101
1010101010001011101001001010101

11

( ++++++++++.कार्यक्रम के अंत में जोड़े गए प्रत्येक मामले के बाद जोड़े गए समाचार )

व्याख्या

अभी भी एक काम प्रगति पर है, लेकिन एक धीमी गति से। समय की कमी के लिए, मैंने अभी इस कार्यक्रम को लिखने के दौरान मेरे द्वारा बनाए गए नोटों की नकल की है, जो अब के लिए स्पष्टीकरण के लिए पर्याप्त होगा:

[Biplex Calculator]

[

Bitsum writing philosophy: 

Start with [0 255 255 255 ...].
The 255s will be markers that we can 'search' for to get back to the start.
After that, the next byte should be a 0, fairly permanently. (The first reference 0)
It is useful to have 0-bytes handy for general calculations. 
The next byte is where we will read the first digit of any binary number. (The first read)
The next byte holds the first bitsum.
Afterward, the next byte is 0, the following byte is the place
to read the second binary digit, the following byte is the second bitsum,
and so on.
I'll use the terminology nth reference 0, nth read, and nth bitsum to refer to
each part of the triplet of bytes.

The location three places after the final bitsum will be 255,
and the location three places after the final read will be 255.
We can move entire numbers by lining up these 255s after every binary number.

]


>->->->>>~                  [0 255 255 255 0 0 0 0 0                ]

[From the first bitsum, read input to create an initial set of bitsums                  ]
,----------
[
    --<++++++[>------<-]            [Convert the input '1' or '0' into a bit        ]
    >>>>,---------- 
]~                      
-<<<+[-<<<+]->>                 [Mark 255 after the last bit, then go back to first read]

,<++++[>--------<-]             [Check for space, using the first reference 0       ]
>
[
    <++++[>+++++<-]             [Check for \n                       ]
    >++
    [
        --<++++++[>------<-]        [It wasn't \n, so convert the input into a bit      ]
        >>>+>               [Write 1 to the next reference 0, and go to next read   ]
    ]
    <-
    [
        +>              [It was \n                      ]
        -<              [Mark 255 on this (nth) read and go to (n-1)th bitsum   ]
        <+[-<<<+]           [Search for a 255 off to the left           ]

        [We've either struck our marker, or the last bitsum. We need to check.          ]
        -<<+
        [
            -           [We hit the last bitsum. Move the bitsums right.    ]
            >+
            [
                ->[-[->>>+<<<]<<<+] [Move until we reach the start          ]
                +[-->>>++]      [From the start, move to our last bitsum    ]
                [Repeat this move until the read here is a 255              ]
                -<+
            ]
            [We now need to go to the first reference zero, and put a 1 there       ]
            <<<+[-[->+<]<<<+]->>+>      [Add bits to bitsums and end on first read  ]
        ]
        <-
        [
            +>->>>>+[->>>+]     [Go to the 255 after our reads              ]
            ->+
            [
                -<[-[->>>+<<<]<<<+] [Move until we reach the start          ]
                +[-->>>++]      [From the start, move to the 255 after our reads]
                [Repeat this move until we see the 255 bitsum               ]
                ->+
            ]
            [We now need to go to the first read                        ]
            -<+<<<+[-[->+<]<<<+]->>     [Add bits to bitsums and end on first read  ]
        ]
        >>>>>>>>>>>>>>>>>>>>>>>>>~<<<<<<<<<<<<<<<<<<<<<<<<<
    ]

    [We're at the reference 0 to the left of our next read                      ]
    >,<++++[>--------<-]            [Check for space, using the first reference 0       ]
    >
]

[

Let BN be the nth bitsum. Then our situation at the moment is:

[0 255 255 255 0 0 B1 0 0 B2 ... 0 0 BN 0 0 255] 
                 ^
I'm just happy nothing's exploded yet.

]

[Next goal: Mark the minimums                                       ]

>+[->>>+]>->->>~            [Zero the 255 and put 2 255s after it, then move after it   ]

-[
    +<<<<<<
    +[-<-<<+]               [Subtract one from each bitsum              ]
    ->>
    [
        +>>>[>>>]           [Find the first 0 bitsum                ]
        >+
        [
            <<->>[->>>+]->>>[-]     [Mark the zero as a minimum, and set a flag     ]
            +<<<<<+[-<<<+]+>->
        ]
        <
    ]
    >->>+>-
]~

[Hey, that worked. Weird. Alright, moving on...                             ]
[Reset the bitsums to what they were before we messed them all up                   ]

<[<<<<<+[-<+<<+]->>[-]>+[->>>+]->>-]>~

[After the stuff up there, that's not too bad.                              ]
[Now it's time to mark the maximums, in virtually the opposite way we did the minimums.         ]

-[
    +<<<<<<
    +[-<+<<+]               [Add one to each bitsum                 ]
    ->>
    [
        ->>>[>>>]           [Find the first 0 bitsum                ]
        >+
        [
            <<<->>>[->>>+]->>>[-]   [Mark the zero as a maximum, and set a flag     ]
            +<<<<<<+[-<<<+]+>>+>
        ]
        <
    ]
    >->>>-
]~

[Alright, now OR the maxs and mins, take care of leading zeros, output, and cross fingers       ]
<<<<->>~<<<<<<~+[->[-]<[->+<]<[->>[-]+<<]<<+]>-[+>>>-]++[->++++++[-<++++++++>]<.>>>+]

न्यूलाइन अलग और अंतरिक्ष समाप्त पूरी तरह से वैध है। +1
ट्राइकोप्लाक्स

7

सीजेएम, 27 बाइट्स

q~2fbWf%:.+_0-$(\W>|fe=W%2b

बेस -10 CJam- शैली सूची के रूप में इनपुट लेता है। इसका परीक्षण यहां करें।वैकल्पिक रूप से, सभी परीक्षण मामलों को चलाएं (स्क्रिप्ट अपेक्षित आउटपुट को हटाती है और इनपुट प्रारूप को आवश्यक रूप से परिवर्तित करती है)।

व्याख्या

q~    e# Read and evaluate input.
2fb   e# Convert each number to base 2.
Wf%   e# Reverse each digit list, to align digits in case there are numbers with different 
      e# widths.
:.+   e# Add up the bit planes.
_0-   e# Make a copy and remove zeroes.
$     e# Sort the bit plane sums.
(\W>| e# Get the first and last element. We use set union instead of addition so that the
      e# resulting array will contain only one value if min = max.
fe=   e# For each element in the bit plane sums, count how often it appears in the min/max
      e# array, which is either 1 or 0.
W%    e# Reverse the digits again (to undo the initial reversing).
2b    e# Interpret as base-2 digits.

क्या आउटपुट बिट्सम अधिकतम और न्यूनतम नहीं होना चाहिए?
डेविड

1
@DavidCarraher नहीं, उदाहरण देखें। आउटपुट एक संख्या होनी चाहिए जिसका द्विआधारी प्रतिनिधित्व 1उन बिट्स में हुआ है जो बिट विमानों के अनुरूप हैं जहां मिनीमा और मैक्सिमा हुई।
मार्टिन एंडर

6

जावास्क्रिप्ट (ईएस 6), 215 185 176 बाइट्स

f=a=>{s=[];for(i of a)for(b=i.toString(2),d=l=b.length;d--;)s[x=l-d-1]=(s[x]|0)+(b[d]|0);q=255;for(r of s)d=r>d?r:d,q=r<q?r||q:q;o="";s.map(r=>o=(r==q|r==d)+o);return+("0b"+o)}

प्रयोग

f([2454267026, 2863311530, 3681400539])
=> 3817748707

व्याख्या

f=a=>{

  // Create an array of bitsums
  s=[];                   // s = bitsums
  for(i of a)             // iterate through the passed array of numbers
    for(
      b=i.toString(2),    // b = number as binary string
      d=l=b.length;       // l = number of digits in b
      d--;                // iterate through each digit of the binary string
    )
      s[x=l-d-1]=         // add to the digit of the bitsum array
        (s[x]|0)+         // get the current value of the bitsum array (or 0 if null)
        (b[d]|0);         // add the result to the bitsum array

  // Get the maximum and minimum bitsums
  q=255;                  // q = min bitsum
  //d=0;                  // d = max bitsum
  for(r of s)             // iterate through the bitsums
    d=r>d?r:d,            // set d to maximum
    q=r<q?r||q:q;         // set q to minimum

  // Calculate the result
  // (unfortunately JavaScript only supports bitwise operations on signed 32-bit
  // integers so the temporary binary string is necessary)
  o="";                   // o = output
  s.map(r=>               // iterate through the bitsum digits
    o=(r==q|r==d)+o       // add a 1 to the string if the digit is equal to min or max
  );
  return+("0b"+o)         // convert the binary string to a number
}

3
PPCG में आपका स्वागत है! मुझे कुछ तरीके दिखाई देते हैं, जिन्हें कम किया जा सकता है। 1) एक पैरामीटर के साथ एक तीर फ़ंक्शन को परिभाषित करते समय, आपको इसके चारों ओर कोष्ठक की आवश्यकता नहीं होती है। f=(a)=>{}= f=a=>{}2) आप अपने for...inछोरों को छोरों में बदल सकते हैं for...of, कुछ बाइट्स को बचाते हुए: for(i in a)for(b=a[i]...= for(i of a)for(b=i..., for(i in s)r=s[i],d=...= for(r of s)d=...3) बिटवाइज़ या |स्वचालित रूप से 1 के लिए सही और 0 में गलत बदलता है, इसलिए o+=r==q|r==d?1:0;जैसा है वैसा ही है o+=r==q|r==d;
ETHproductions

1
अंत में आप कर सकते हैं: return parseInt(o,2)से:return+('0b'+o)
डाउनगोट

1
2 बाइट्स बचाने के लिए आप की जगह ले सकता s[l-d-1]=(s[l-d-1]|0)साथ s[T=l-d-1]=(s[T]|0)। अधिक 2 दाढ़ी करने के लिए, के b=i.toString(2),l=b.length,d=lसाथ बदलें d=l=(b=i.toString(2)).length
इस्माइल मिगुएल

4

जूलिया, 141 बाइट्स

A->(s=reduce(.+,map(i->digits(i,2,maximum(map(i->ndigits(i,2),A))),A));parse(Int,reverse(join([1(iextrema(filter(j->j>0,s)))for i=s])),2))

Ungolfed:

function biplex(A::AbstractArray)
    # Get the maximum number of binary digits in each element
    # of the input array
    L = maximum(map(i -> ndigits(i, 2), A))

    # Create an array of arrays of binary digits corresponding
    # to the inputs
    B = map(i -> digits(i, 2, L), A)

    # Get the bitsums
    S = reduce(.+, B)

    # Replace the minimum and maximum bitsums with ones and
    # the rest with zeros
    s = [1 * (i in extrema(filter(j -> j > 0, S))) for i in S]

    # Join this into a string and parse it as a base 2 integer
    # Reverse is required because digits() returns the digits
    # in reverse order
    p = parse(Int, reverse(join(s)), 2)

    return p
end

3

सिम्पलेक्स v.0.7 , 38 बाइट्स

सरल अगर टिप्पणी की। बाइनरी में इनपुट, फिलहाल कोई दुभाषिया काम नहीं कर रहा है। उम्मीद है कि टिप्पणियां पर्याप्त हों।

hj&=j&Lun?&RvRpp]{Ri}^XKRJ@jqLhR@LhuTo
h               ]                        ~~ define macro 0
 j&                                      ~~ insert a new byte and write register to it
   =                                     ~~ equal to the previous byte?
    j&                                   ~~ insert a new byte and write register to it
      L                                  ~~ return to equality
       u    v                            ~~ go up/down a strip
        n?&                              ~~ write the register iff byte = 0
           R                             ~~ go right
             Rpp                         ~~ remove two bytes
                 {Ri}                    ~~ take input until input = 0
                     ^X                  ~~ take the sum of the strip
                       K                 ~~ split that sum into digits
                        RJ@              ~~ take the max; write to register
                           jq            ~~ take the min
                             Lh          ~~ call macro 0
                               R@        ~~ set min to register
                                 Lh      ~~ apply macro 0
                                   uTo   ~~ output result 

3

ऑक्टेव, 50 बाइट्स

@(a)["" ((b=sum(a-48))==max(b)|b==min(b(b>0)))+48]

उदाहरण:

octave:1> g = @(a)["" ((b=sum(a-48))==max(b)|b==min(b(b>0)))+48] ;
octave:2> g(["10010010010010010010010010010010"; "10101010101010101010101010101010"; "11011011011011011011011011011011"])
ans = 11100011100011100011100011100011

मैं इस एक के लिए एक स्पष्टीकरण देखना पसंद
करूंगा

2
@trichoplax मैं matlab / octave के साथ बहुत शानदार नहीं हूं, लेकिन उम्मीद है कि यह मदद करता है: @(a)एक अनाम फ़ंक्शन को परिभाषित करता है जो एक इनपुट वेक्टर लेता है a["" एक स्ट्रिंग में आउटपुट को बल देता है (मेरा मानना ​​है)। बिट्स युक्त वेक्टर होने को (b=sum(a-48))परिभाषित करता bहै। b==max(b)एक वेक्टर 1एक दी गई जगह में होगा यदि बिट्सम एक अधिकतम है, और 0अन्यथा। b(b>0)से bअधिक के हर तत्व का एक सदिश है 0, इसलिए b==min(b(b>0))एक सदिश है जिसमें 1बिट्स न्यूनतम है, और 0अन्यथा। फिर यह एक साथ, और +48ASCII के लिए होगा।
ब्रेनसेल

@BrainSteel अब सभी समझ में आता है - धन्यवाद
ट्राइकोप्लाक्स 17

कभी-कभी मैं भूल जाता हूं कि ऑक्टेव और MATLAB कितने अलग हैं। मुझे लगता है कि मुझे वास्तव में भविष्य में गोल्फिंग के लिए ऑक्टेव का उपयोग करना शुरू करना चाहिए, मेरा सबसे छोटा MATLAB प्रयास 60 बाइट्स है क्योंकि आप इनलाइन असाइनमेंट का उपयोग नहीं कर सकते हैं और function o=b(i)(न्यूलाइन) के साथ समाप्त हो सकते हैंr=sum(i>48);o=['' (r==max(r)|r==min(r))+48];
Sanchises

3

जावास्क्रिप्ट (ईएस 6), 158

एक संख्यात्मक सरणी पैरामीटर के साथ एक फ़ंक्शन, एक संख्या लौटाता है। एक ही बाइट काउंट के साथ यह एक स्ट्रिंग ऐरे पैरामीटर (बेस 2 रैपर्सेंटेशन युक्त) प्राप्त कर सकता है और बेस 2 स्ट्रिंग लौटा सकता है - बस .toString(2)अंत में आगे बढ़ें r

f=l=>(l.map(v=>[...v.toString(2)].reverse().map((x,i)=>t[i]=~~t[i]-x),t=[]),t.map(v=>(r+=v==Math.min(...t)|v==Math.max(...t.filter(x=>x))&&b,b+=b),r=0,b=1),r)

// More readable

u=l=>(
  t=[],
  l.map(v =>
    [...v.toString(2)]
    .reverse()
    .map((x,i) => t[i] = ~~t[i] - x)
  ),
  r=0,b=1,
  t.map(v => (
    r += v==Math.min(...t) | v==Math.max(...t.filter(x=>x)) && b, b+=b
  )),
  r
)

// Test
console.log=s=>O.innerHTML+=s+'\n'

;[
 [[1], 1]
,[[2], 2]
,[[1, 2, 5], 7]
,[[4294967295], 4294967295]
,[[2454267026, 2863311530, 3681400539], 3817748707]
,[[2341103945, 2969112506, 1849078949, 1430639189], 3]
].forEach(t =>{ 
  r=f(t[0])
  x=t[1]
  console.log('Test '+(r==x?'OK':'Fail (Expected: ' + x +')')
  +'\nInput: '+t[0]+'\nResult: ' +r+'\n')                       
})  
<pre id=O></pre>


3

हास्केल, 198 182 178 161 चरित्र

मैं अभी भी गोल्फ में शुरुआत कर रहा हूं। उत्तर से केवल 80 प्रतिष्ठा मिलती है।

m=map
v=reverse
(b:x)&(c:y)=(b+c):x&y
[]&a=a
b&_=b
l=(show=<<).v.(\a->m(fromEnum.(`elem`[maximum a,minimum$(replicate=<<id)=<<a]))a).foldl1(&).m(m(read.(:[])).v)

यह कैसे काम करता है।

गद्दी के बजाय, मैं सरणी को उल्टा करता हूं फिर मैं उपयोगकर्ता परिभाषित (और) का उपयोग करता हूं। मैं foldl1 (zipWith (+)) का उपयोग नहीं करता, जो कि छोटा है क्योंकि zipWith अतिसारी वस्तु को हटा देगा। तब मुझे अधिकतम और नॉनजरो न्यूनतम मिलते हैं, जिसके लिए उपयोगकर्ता परिभाषित फ़ंक्शन भी आवश्यक है। फिर मैं अधिकतम और नॉनज़रो न्यूनतम के साथ आइटम का मिलान करता हूं, 1 यदि मैच करता है, तो 0 अगर यह मेल नहीं खाता है। तब हम रिवर्स करते हैं और इसे बाइनरी नंबर में बदल देते हैं।

करने के लिए:

  1. का उपयोग करते हुए Data.List

2
की परिभाषा में k, cकेवल एक बार उपयोग किया जाता है, इसलिए इसे whereखंड में डालने की आवश्यकता नहीं है । इसे सीधे उपयोग करें ...||(x==a#b)...:। क्यों घुंघराले ब्रेसिज़? में l: concat.map showहै concatMap showया और भी बेहतर >>=: l=(>>=show).v...। (नोट: वहाँ भी है =<<जो एक ही है, लेकिन तर्कों के साथ फ़्लिप किया:) (show=<<).v...>>=और =<<यहां सूची के संदर्भ में काम करें और फ़ंक्शन या अन्य संदर्भों में अलग-अलग काम करें।
nimi

2
आप के साथ और []के अंतिम मामलों में बदल सकते हैं : और । &#_b&_=b_#l=l
०४:४३

2
(x==b)||(x==c)(या (x==b)||(x==a#b)जब आप निकालते हैं c) को प्रतिस्थापित किया जा सकता है elem x[b,c](सम्मान:) elem x[b,a#b]
नागी

2
u=maximumऔर k a=m(\x->fromEnum$elem x[u a,a#u a])aकाम करना चाहिए।
दोपहर

1
मत करो _&a=a, यह रहना चाहिए []&a=a, अन्यथा दूसरी खाली होने पर पहली सूची खो जाती है। _केवल अंतिम मामले में उपयोग करें - शायद यह आपकी त्रुटि है।
nimi

3

पायथन 3, 181 126 122 बाइट्स

(मैंने ज्यादातर बाइट काउंट स्लैश निकाले क्योंकि यह थोड़ा हास्यास्पद हो रहा था।) Sp3000 की बदौलत 21 बाइट्स !

*z,=map(sum,zip(*[map(int,t.zfill(99))for t in input().split()]))
k=0
for x in z:k=k*10+(x in[min(z)or 1,max(z)])
print(k)

थोड़ा कम गोल्फ:

s=input().split()
k=list(map(lambda t:list(map(int,t))[::-1],s))
z=list(map(sum,zip(*k)))
y=z[:]
while min(y)==0:y.remove(0)
a,b=min(y),max(y)
f=''.join(map(lambda x:str(1*(x in[a,b])),z[::-1]))
print(int(f))

बाइनरी में इनपुट की उम्मीद केवल संख्याओं को अलग करने वाले रिक्त स्थान के साथ है। आउटपुट बाइनरी में भी है।


3

जावास्क्रिप्ट, 154 150 बाइट्स

t=i=>(m=0,r=[],i.map(n=>{for(j=31;j+1;r[k=31-j]=(r[k]|0)+((n>>>j)%2),--j);}),r.map(n=>m=(n==Math.min(...r.filter(x=>x))|n==Math.max(...r)?1:0)+m*2),m)

मिनट / अधिकतम गणना के लिए edc65 विधि के लिए धन्यवाद, इसने मेरे कोड को 4 बाइट्स से छोटा कर दिया।

व्याख्या

t=i=>(
    m=0,//m=>output
    r=[],//Bitsum then final number in binary
    i.map(
        n=>
        {
            //Decimal to binary + bitsum
            for(j=31;j+1;r[k=31-j]=(r[k]|0)+((n>>>j)%2),--j);
        }),
    //Output formatting
    r.map(
        n=>
            m=(n==Math.min(...r.filter(x=>x))|n==Math.max(...r)?1:0)+m*2
        ),
    m
)

+1 अच्छा। बिट अंकगणित दूर से स्ट्रिंग रूपांतरण को धड़कता है। और मैं इसे और छोटा करने के 2 तरीके देखता हूं।
edc65

132:f=i=>(m=0,r=[],i.map(n=>{for(k=32;k--;n=n/2|0)r[k]=~~r[k]+n%2}),r.map(n=>m+=m+(n==Math.min(...r.filter(x=>x))|n==Math.max(...r))),m)
edc65

और भी बेहतर! मुझे लूप्स के लिए गोल्फिंग के बारे में अधिक जानने की जरूरत है, फिर भी निर्देशों के लिए हाईजेक का उपयोग नहीं करें।
नौक

3

ShapeScript , 186 बाइट्स

'"1
"$0?_1-"+"*":2"@~@"0
"~"0
"$"
"~+'1?_*!"2"$"0"~"
"$""~":"1?'@1?"+"$_1>"+"*+@1?"0"+$""~'1?_*!#"0"+@":+"'1?1?"0"+$_2<"+"*+'1?_*!"0"+$"1"~@$"1"~":"$""~"+"$""~'"
"@+"
0"$""~'1?_*!"
"$""~

एक महत्वपूर्ण, बेकार ऑपरेटर के लिए एक महत्वपूर्ण, बेकार भाषा।

I / O बाइनरी में है। कार्यक्रम एक अलग लाइन पर प्रत्येक संख्या की उम्मीद करता है, प्रत्येक एक लाइनफीड के साथ समाप्त होता है।

इसे ऑनलाइन आज़माएं!

परीक्षण के मामलों

$ echo -e '1' | shapescript biplex.shape; echo
1
$ echo -e '10' | shapescript biplex.shape; echo
10
$ echo -e '1\n10\n101' | shapescript biplex.shape; echo
111
$ echo -e '11111111111111111111111111111111' | shapescript biplex.shape; echo11111111111111111111111111111111
$ echo -e '10010010010010010010010010010010\n10101010101010101010101010101010\n11011011011011011011011011011011' | shapescript biplex.shape; echo
11100011100011100011100011100011
$ echo -e '10001011100010100110100101001001\n10110000111110010000111110111010\n1101110001101101011010010100101\n1010101010001011101001001010101' | shapescript biplex.shape; echo
11

मुझे नहीं पता कि यह कचरा क्या है जिसे आप एक भाषा कहते हैं , लेकिन मुझे यह पसंद है!
चरण

2

एपीएल, 27 बाइट्स

{2⊥S∊(⌈/,⌊/)0~⍨S←+/⍵⊤⍨32⍴2}

यह एक मोनैडिक फ़ंक्शन है जो दशमलव पूर्णांक की एक सूची लेता है और उनके दशमलव द्विपद को लौटाता है।

इसे ngn / apl डेमो में ऑनलाइन आज़माएँ

यह काम किस प्रकार करता है

                     32⍴2  Create a list of 32 2's.
                  ⍵⊤⍨      Base-encode the right argument.
                +/         Add the corresponding binary digits.
              S←           Save the sums in S.
           0~⍨             Remove 0's.
    (⌈/,⌊/)                Apply minimum (⌊/), maximum (⌈/) and concatenate.
  S∊                       Check which binary digits are in the extrema list.
2⊥                         Convert from base 2 to integer.

2

वोल्फ्राम भाषा, 113 बाइट्स

यह संस्करण पॉपअप विंडो से इनपुट लेता है, जिसमें संख्या "{x, y, z, ...}", (कोई उद्धरण नहीं) के रूप में इनपुट होती है।

FromDigits[#/.{Max[#]->1,Min[#/.{0->Nothing}]->1,_Integer->0},2]&@Total[PadLeft[IntegerDigits[#,2],33]&/@Input[]]

इनपुट:

पॉपअप विंडो डायनामिक

आउटपुट:

उत्पादन

डायनामिक Manipulate में x, y और z के साथ "{x, y, z}" स्ट्रिंग के रूप में इनपुट लेती है और बेस 10 पूर्णांकों के साथ (बिना या प्रमुख शून्य के)। आउटपुट बेस 10 में भी है।

Manipulate[FromDigits[#/.{Max[#]->1,Min[#/.{0->Nothing}]->1,_Integer->0},2]&@Total[PadLeft[IntegerDigits[#,2],33]&/@ToExpression@i],{i,"{1}"}]

उदाहरण

इस तरह से इनपुट करने के अन्य तरीके हैं जो चरित्र गणना पर बचत करेंगे, लेकिन मुझे लगता है कि यह समाधान गतिशील जीयूआई का एक सुरुचिपूर्ण उपयोग है जो गणना करता है

यदि आप इसे क्लाउड में चलाना चाहते हैं, तो हम CloudDeploy का उपयोग कर सकते हैं:

o=CloudDeploy[FormPage[{"i"->"String"},(FromDigits[#/.{Max[#]->1,Min[#/.{0->Nothing}]->1,_Integer->0},2]&@Total[PadLeft[IntegerDigits[#,2],33]&/@ToExpression@#i])&]];SetOptions[o,Permissions->{All->{"Read","Execute"},"Owner"->{"Read","Write","Execute"}}];o

क्लाउड परिनियोजन वर्ण गणना 256 तक लाता है ...

FormPage के लिए इनपुट x, y और z के आधार 10 पूर्णांकों के साथ "{x, y, z}" फॉर्म का एक स्ट्रिंग भी है।

मैंने खुद इसे क्लाउड-परिनियोजित किया और आप इसे https://www.wolframcloud.com/objects/97b512df-64f8-4cae-979b-dba6d9622781 पर आज़मा सकते हैं

बादल का उदाहरण


मैंने अग्रणी शून्य के बिना क्लाउड लिंक का परीक्षण किया है और यह अभी भी सही ढंग से 3. आउटपुट करता है
ट्राइकोप्लाक्स

यदि आपके पास GUI के बिना छोटा कोड है, तो आप इसे अपने स्कोर को बेहतर बनाने के लिए इस उत्तर में संपादित कर सकते हैं, और फिर भी आपके उत्तर में GUI संस्करण को वैकल्पिक उदाहरण के रूप में दिखा सकते हैं कि क्या संभव है। दोनों दुनिया के सर्वश्रेष्ठ ...
ट्राइकोप्लाक्स

@trichoplax Noted, मैंने जोड़ा कि मुझे क्या लगता है कि इनपुट [] के साथ सबसे छोटा संस्करण है। काल्पनिक रूप से यह भी उम्मीद कर सकता है कि संख्याएं एक चर में संग्रहीत की जा सकती हैं, जो वर्ण संख्या को भी कम कर सकती हैं, लेकिन फिर यह अस्पष्ट है कि आप इसमें इनपुट कैसे दर्ज करते हैं, मुझे लगता है
इयान जॉनसन

एक चर में संख्याओं को संग्रहीत करना डिफ़ॉल्ट इनपुट विधियों में से एक नहीं है ... ताकि अतिरिक्त कदम उपलब्ध न हो, लेकिन आपके पास अब तक जो भी है वह महान है :)
ट्राइकोप्लाक्स

1

पायथन 3, 197

import itertools
o='0'
d=[sum(map(int,n))for n in itertools.zip_longest(*map(reversed,input().split(' ')),fillvalue=o)]
m=max(d),min(d)or 1
print(''.join((o,'1')[g in m]for g in d[::-1]).lstrip(o))

यह अंतरिक्ष में सीमांकित बाइनरी नंबर लेता है।

Ungolfed संस्करण:

import itertools
nums = map(reversed, input().split(' '))
digits = []
for num in itertools.zip_longest(*nums, fillvalue='0'):
    current_digit = sum(map(int,num))
    digits.append(current_digit)
bit_max = max(digits)
bit_min = min(digits) or min(digits) + 1
print(''.join(('0','1')[digit in(bit_max,bit_min)]for digit in digits[::-1]).lstrip('0'))

1

सी #, 255

एक पूरा कार्यक्रम, कमांड लाइन तर्क के रूप में इनपुट - अंतरिक्ष अलग - दशमलव में।

using System.Linq;class P{static void Main(string[]l){var n=new uint[32];uint i,r=0,b;foreach(var v in l)for(i=0,b=uint.Parse(v);b!=0;b/=2)n[i++]+=b&1;b=1;foreach(var v in n){r+=(v==n.Max()|v== n.Min(x=>x>0?x:n.Max()))?b:0;b+=b;}System.Console.Write(r);}}

अधिक पठनीय:

using System.Linq;

class P
{
    static void Main(string[] l)
    {
        var n = new uint[32];
        uint i, r = 0, b;

        foreach (var v in l)
            for (i = 0, b = uint.Parse(v); b != 0; b /= 2) n[i++] += b & 1;
        b = 1;
        foreach (var v in n)
        {
            r += (v == n.Max() | v == n.Min(x => x > 0 ? x : n.Max())) ? b : 0;
            b += b;
        }
        System.Console.Write(r);
    }
}

1

रूबी, 127 बाइट्स

def f l;a=[];32.times{|i|a[i]=0;l.each{|n|;a[i]+=n[i]}};a.map{|b|a.reject{|c|c==0}.minmax.index(b)?1:0}.reverse.join.to_i 2;end

इनपुट के रूप में एक सरणी लेता है।


1

कॉफीस्क्रिप्ट, 194 बाइट्स

कोमा को बाइनरी से अलग किए गए इनपुट के रूप में लेता है, बाइनरी में आउटपुट।

a=(s.split('').reverse()for s in prompt().split(','))
for i in b=[0..31]
 b[i]=0
 b[i]+=+c[31-i]||0for c in a
m=1/M=0
for d in b
 M=d if d>M;m=d if m>d&&d
alert +(+(d in[m,M])for d in b).join ''

कोशिश करो।


1

GolfScript, 46 बाइट्स

~{2base-1%}%zip{{+}*}%-1%.$0-)\1<|`{&,}+%2base

इसे ऑनलाइन वेब गोल्फस्क्रिप्ट पर आज़माएं

परीक्षण के मामलों

$ golfscript biplex.gs <<< '[1]'
1
$ golfscript biplex.gs <<< '[2]'
2
$ golfscript biplex.gs <<< '[1 2 5]'
7
$ golfscript biplex.gs <<< '[4294967295]'
4294967295
$ golfscript biplex.gs <<< '[2454267026 2863311530 3681400539]'
3817748707
$ golfscript biplex.gs <<< '[2341103945 2969112506 1849078949 1430639189]'
3

1

सी ++, 192 बाइट्स

इनपुट को 32 बिट अहस्ताक्षरित पूर्णांक सरणी, और उस सरणी में आइटमों की गिनती स्वीकार करता है।

typedef unsigned long U;U b(U*a,int c){U x[32],t,i,j,M=0,m=c,r=0;for(i=0;i<32;x[i++]=t,m=t&&m>t?t:m,M=M<t?t:M)for(t=j=0;j<c;)t+=a[j++]>>i&1;for(i=0;i<32;++i)r|=(x[i]==m||x[i]==M)<<i;return r;}

अधूरा:

unsigned long b(unsigned long*a, int c){
    unsigned long x[32],t,i,j,M=0,m=c,r=0;
    for(i=0;i<32;x[i++]=t){
        m = (t && m > t)?t:m;
        M = M < t ? t:M;
        for(t=j=0;j<c;){
            t+=a[j++]>>i&1;
        }
    }
    for(i=0;i<32;++i)
        r|=(x[i]==m||x[i]==M)<<i;
    return r;
}

1
@trichoplax मैंने इसे बदल दिया है।
मेगाटॉम
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.