বাইপ্লেক্স: একটি গুরুত্বপূর্ণ অকেজো অপারেটর


33

ইনপুট

  • 1 এবং 255 এর মধ্যে ইতিবাচক পূর্ণসংখ্যার (অন্তর্ভুক্ত) একটি তালিকা, প্রতিটি 1 থেকে 2 32 - 1 (অন্তর্ভুক্ত) এর মধ্যে রয়েছে।
  • আপনার ইনপুট ফর্ম্যাটটি পরীক্ষাগুলির ক্ষেত্রে অভিন্ন হওয়ার দরকার নেই।
  • শীর্ষস্থানীয় জিরো ব্যতীত ইনপুট গ্রহণ করা প্রয়োজন।
  • নেতৃস্থানীয় শূন্যগুলির সাথে ইনপুট গ্রহণ করার প্রয়োজন নেই।
  • আপনি পূর্ণসংখ্যার মধ্যে যেটি ডিলিমিটার চান তা ব্যবহার করতে পারেন।
  • একটি পূর্ণসংখ্যা একটি স্ট্রিং দ্বারা প্রতিনিধিত্ব করা যেতে পারে তবে একটি নির্দিষ্ট পূর্ণসংখ্যার স্বতন্ত্র অঙ্কগুলি অবশ্যই সুসংগত হতে পারে।
  • আপনি ইনপুটটির জন্য কোনও বেস ব্যবহার করতে বাছাই করতে পারেন (বাইনারি এবং অ্যানারি সহ), তবে শর্ত থাকে যে আউটপুটটি সেই বেসেও থাকে।

আউটপুট

  • একক পূর্ণসংখ্যা
  • আউটপুটে অবশ্যই কোনও শীর্ষস্থানীয় শূন্য থাকতে হবে।
  • আউটপুট অবশ্যই ইনপুট হিসাবে একই বেসে থাকতে হবে।
  • আউটপুটটি আপনি যেভাবে চান গণনা করা যেতে পারে তবে নিম্নলিখিত গণনার ফলাফলের সাথে অবশ্যই মেলে:

বাইপ্লেক্স গণনা করা হচ্ছে

  • বাইনারি উপস্থাপনের বিটগুলি শূন্য থেকে শুরু করে ডান থেকে গণনা করা হয়, তাই আমি i টি উপস্থাপন করে কলামে থাকি
  • আমি তম bitsum এর সমষ্টি আমি তম ইনপুট সংখ্যার প্রতিটি বাইনারি উপস্থাপনা বিট।
  • Bitsum সর্বাধিক সর্বোচ্চ মান bitsums কর্তৃক গৃহীত হয়।
  • বিটসাম সর্বনিম্ন হ'ল বিটসাম দ্বারা নেওয়া সর্বনিম্ন শূন্যের মান।
  • আমি তম আউটপুট বাইনারি প্রতিনিধিত্ব অঙ্ক হল:
    • 1 যদি i তম বিটসাম বিটসাম সর্বাধিক বা বিটসাম সর্বনিম্নের সমান হয়।
    • 0 অন্যথায়।

কাজ করেছেন উদাহরণ

এই উদাহরণ ইনপুট এবং আউটপুট জন্য বাইনারি ব্যবহার করে।

Input:    100110
         1101110
         1100101
         _______
Bitsums: 2301321

Output:   101101

বিটসাম সর্বাধিক 3 এবং বিটসাম সর্বনিম্ন 1 হয়, সুতরাং আউটপুট যেখানেই বিটসাম 3 বা 1, এবং অন্য কোথাও 0 গুলি সর্বত্র 1s রয়েছে।


পরীক্ষার মামলা

পরীক্ষার মামলাগুলি ফর্মটিতে রয়েছে:

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

লিডারবোর্ড

মার্টিনের লিডারবোর্ড স্নিপেটকে ধন্যবাদ


আড্ডার আলোচনার পরে অপারেটরের নাম রাখা হয়েছিল দ্বিপ্লেক্স, বাইনারি প্লেন এক্সট্রিমার সংক্ষিপ্ত ।


উদাহরণস্বরূপ, আমরা কী ইনপুটটি বাইনারি হতে হবে?
ফেয়ারসাম

1
@feersum 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]] এর মতো স্বরলিপি ব্যবহার করতে পারি?
আকাংকা

সম্ভবত না. সর্বাধিক সীমাবদ্ধ মনে করুন।
আকাংকা

@ খ্রিস্টিয়ান ইরওয়ান ইনপুটটি পূর্ণসংখ্যার আকারে হওয়া উচিত (প্রতিটি স্বতন্ত্র অঙ্ক দ্বারা গঠিত)। একটি পূর্ণসংখ্যা একটি স্ট্রিং হিসাবে উপস্থাপন করা যেতে পারে তবে অঙ্কগুলির মধ্যে কোনও বিভাজক হওয়া উচিত নয়।
ট্রাইকোপলাক্স

উত্তর:


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

পাইথ, 26 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.>./,<./@#~@)&.#:

এটি একটি সূক্ষ্ম, একাকী ক্রিয়া যা দশমিক পূর্ণসংখ্যার একটি তালিকা নেয় এবং তাদের দশমিক দ্বিদ্বীপ প্রদান করে।

@ Zgarb তার পরামর্শের জন্য ধন্যবাদ, যা সরাসরি 4 বাইট সংরক্ষণ করেছিল এবং আরও 2 টির জন্য পথ প্রশস্ত করেছে!

আরও 2 বাইট গল্ফ করার জন্য @ আরেন্ডোমাকে ধন্যবাদ!

পরীক্ষার মামলা

   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 অর্জন করেছেন; আমি মিনকোল্যাং সম্পর্কে জানতে পেরে আনন্দিত।
lirtosiast

8

ব্রেইনফাক , 619 বাইট

প্রথম উত্তর এখানে খুব দীর্ঘ, তাই আমি ভেবেছিলাম আমি একটি ভাল উত্তর করব!

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

আমি কি জিতলাম?

এই প্রোগ্রামটি 10প্রতি বাইনারি সংখ্যার পরে নতুন লাইনগুলি (এএসসিআইআই ) প্রত্যাশা করে 32এবং শেষে একটি স্থান (এএসসিআইআই ) প্রয়োজন ।

টেস্ট রান:

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 সিজেম-শৈলীর তালিকা হিসাবে ইনপুট নেয়। এটি এখানে পরীক্ষা করুন। বিকল্পভাবে, সমস্ত পরীক্ষার কেস চালান (স্ক্রিপ্টটি প্রত্যাশিত আউটপুট বাতিল করে এবং প্রয়োজনীয় হিসাবে ইনপুট ফর্ম্যাটকে রূপান্তর করে)।

ব্যাখ্যা

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
@ ডেভিডকারারহর না, উদাহরণগুলি দেখুন। আউটপুট এমন একটি সংখ্যার হওয়া উচিত যার বাইনারি উপস্থাপনা 1সেই বিটগুলিতে রয়েছে যা বিমা প্লেনের সাথে মিলিত হয় যেখানে মিনিমা এবং ম্যাক্সিমা ঘটেছিল।
মার্টিন ইন্ডার

6

জাভাস্ক্রিপ্ট (ES6), 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
পিপিসিজিতে আপনাকে স্বাগতম! আমি বেশ কয়েকটি উপায় দেখতে পাচ্ছি যে এটি আরও সংক্ষিপ্ত করা যেতে পারে। 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;
ইটিএইচ প্রডাকশন

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 বাইট

সরল ified মন্তব্য। বাইনারি ইনপুট, এই মুহূর্তে কোন দোভাষী কাজ করছে না। আশা করি মতামতই যথেষ্ট।

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
@ থ্রিচোপ্লেক্স আমি মাতলাব / অষ্টাভের সাথে খুব উজ্জ্বল নই, তবে আশা করি এটি সাহায্য করবে: @(a)একটি বেনামি কার্যকারিতা সংজ্ঞায়িত করে যা একটি ইনপুট ভেক্টর নেয় a["" আউটপুটটিকে স্ট্রিংয়ে জোর করে (আমি বিশ্বাস করি)। বিটসামযুক্ত ভেক্টর হিসাবে (b=sum(a-48))সংজ্ঞায়িত করা bহয়। বিটসাম সর্বাধিক, এবং অন্যথায় যদি কোনও নির্দিষ্ট স্থানে থাকে তবে b==max(b)একটি ভেক্টর হবে । প্রতিটি উপাদানের একটি ভেক্টর হয় তার চেয়ে অনেক বেশী , তাই একটি ভেক্টর একটি ধারণকারী হয় যখন bitsum ন্যূনতম, এবং অন্যথায়। তারপরে এটি একসাথে, এবং ASCII এর জন্য। 10b(b>0)b0b==min(b(b>0))10+48
BrainSteel

@ ব্রেনস্টিল এখনই অর্থবোধ করে - ধন্যবাদ
ট্রাইকোপ্লাক্স

কখনও কখনও আমি ভুলে যাই যে অক্টাভে এবং ম্যাটল্যাব কতটা আলাদা। আমার ধারণা ভবিষ্যতে গল্ফিংয়ের জন্য সত্যই আমার অক্টোটাভ ব্যবহার শুরু করা উচিত, আমার স্বল্পতম ম্যাটল্যাব প্রচেষ্টা 60 বাইট কারণ আপনি ইনলাইন অ্যাসাইনমেন্টটি ব্যবহার করতে পারবেন না এবং function o=b(i)(নিউলাইন) দিয়ে শেষ করতে পারবেন নাr=sum(i>48);o=['' (r==max(r)|r==min(r))+48];
সানচিইস

3

জাভাস্ক্রিপ্ট (ES6), 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)

এটা কিভাবে কাজ করে.

প্যাডিংয়ের পরিবর্তে, আমি অ্যারেটি বিপরীত করি তারপরে আমি ব্যবহারকারী সংজ্ঞায়িত (&) ব্যবহার করে যুক্ত করি। আমি ভাঁজ 1 (জিপউইথ (+)) ব্যবহার করি না যা সংক্ষিপ্ত কারণ জিপবিথ অতিশয় আইটেম মুছে ফেলবে। তারপরে আমি সর্বাধিক এবং ননজারো সর্বনিম্ন পাই, এটির জন্যও ব্যবহারকারী সংজ্ঞায়িত ফাংশন প্রয়োজন। তারপরে আমি আইটেমটি সর্বাধিক এবং ননজারো সর্বনিম্নের সাথে মেলে, যদি 1 টি মিলছে, যদি এটি মেলে না। তারপরে আমরা বিপরীত এবং এটি বাইনারি সংখ্যায় পরিণত করি।

করতে:

  1. ব্যবহার Data.List

2
সংজ্ঞা অনুসারে k, cশুধুমাত্র একবার ব্যবহার করা হয়, সুতরাং এটির whereধারাটিতে রাখার দরকার নেই। এটা সরাসরি ব্যবহার করুন: ...||(x==a#b)...। কোঁকড়া ধনুর্বন্ধনী কেন? ইন l: concat.map showহয় concatMap showবা আরও ভাল >>=: l=(>>=show).v...। (দ্রষ্টব্য: এছাড়াও রয়েছে =<<যা একই কাজ করে তবে যুক্তিগুলি উল্টিয়ে দেয় (show=<<).v...:)। >>=এবং =<<এখানে তালিকার প্রসঙ্গে কাজ করুন এবং ফাংশন বা অন্যান্য প্রসঙ্গে বিভিন্ন জিনিস করুন।
নিমি

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, অন্যথায় দ্বিতীয় তালিকাটি খালি থাকলে প্রথম তালিকাটি হারিয়ে যায়। _শুধুমাত্র শেষ ক্ষেত্রে ব্যবহার করুন - এটি সম্ভবত আপনার ত্রুটি।
নিমি

3

পাইথন 3, 181 126 122 বাইট

(আমি বেশিরভাগ বাইট গণনা স্ল্যাশগুলি বের করেছিলাম কারণ এটি কিছুটা হাস্যকর হয়ে উঠছিল )) 213 বাইট অফ স্প3000 কে ধন্যবাদ !

*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

শেপস্ক্রিপ্ট , 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?_*!"
"$""~

একটি গুরুত্বপূর্ণ, অকেজো অপারেটরের জন্য একটি গুরুত্বপূর্ণ, অকেজো ভাষা।

আই / ও বাইনারি হয়। প্রোগ্রামটি প্রতিটি সংখ্যা পৃথক লাইনে প্রত্যাশা করে, প্রতিটি লাইনফিডের সাথে শেষ হয়।

এটি অনলাইন চেষ্টা করুন!

পরীক্ষার মামলা

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

এটি একটি মোনাডিক ফাংশন যা দশমিক পূর্ণসংখ্যার একটি তালিকা নেয় এবং তাদের দশমিক বাইপ্লেক্স প্রদান করে।

এটি এনজিএন / এপিএল ডেমোতে অনলাইনে চেষ্টা করে দেখুন ।

কিভাবে এটা কাজ করে

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

ইনপুট:

পপআপ উইন্ডো গতিশীল

আউটপুট:

আউটপুট

X, y, এবং z এর সাথে বেস 10 পূর্ণসংখ্যার (শীর্ষস্থানীয় শূন্যের সাথে বা ছাড়াই) ফর্মের স্ট্রিং হিসাবে "{x, y, z}" হিসাবে একটি গতিশীল ম্যানিপুলেটে ইনপুট নেয়। আউটপুট 10 বেসেও রয়েছে।

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

উদাহরণ

এটিকে ইনপুট করার অন্যান্য উপায় রয়েছে এমন একটি উপায়ে যা চরিত্রের পরিসংখ্যানগুলিতে সঞ্চয় করতে পারে তবে আমি মনে করি যে এই সমাধানটি গতিশীল জিইউআইয়ের মার্জিত ব্যবহার যা গণনা সম্পাদন করে

আপনি যদি ক্লাউডে এটি চালাতে চান তবে আমরা ক্লাউডডপ্লাই ব্যবহার করতে পারি:

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 পর্যন্ত চরিত্রের গণনা এনেছে ...

ফর্মপেজের ইনপুটটি হ'ল x, y, এবং z এর মূল 10 পূর্ণসংখ্যার সাথে "{x, y, z}" ফর্মের একটি স্ট্রিং।

আমি নিজে এটি মেঘে মোতায়েন করেছি এবং আপনি এটি https://www.wolframcloud.com/objects/97b512df-64f8-4cae-979b-dba6d9622781 এ চেষ্টা করে দেখতে পারেন

মেঘ উদাহরণ


আমি অগ্রণী শূন্যগুলি ছাড়াই মেঘের লিঙ্কটি পরীক্ষা করেছি এবং এটি এখনও সঠিকভাবে আউটপুট 3
ট্রাইকোপলাক্স

আপনার যদি জিইউআই ছাড়াই সংক্ষিপ্ত কোড থাকে তবে আপনার স্কোরটি উন্নত করতে আপনি এই উত্তরে এটি সম্পাদনা করতে পারেন, এবং এখনও কী সম্ভব তা দেখানোর বিকল্প বিকল্প হিসাবে আপনার উত্তরে জিইউআই সংস্করণটি রেখে যেতে পারেন। দুই ভুবনের সেরা...
ট্রিকোপলাক্স

@ থ্রিচোপলাক্স লক্ষণীয়, আমি যা বলেছি তা ইনপুট [] এর সাথে সংক্ষিপ্ততম সংস্করণ হিসাবে যুক্ত করেছি। অনুমানযোগ্যভাবে সংখ্যাগুলি কোনও ভেরিয়েবলের মধ্যে সংরক্ষণের আশাও করতে পারে, যা চরিত্রের সংখ্যাও হ্রাস করতে পারে, তবে তারপরে এটি কীভাবে আপনি ইনপুটটি প্রবেশ করবেন তা আমি অস্পষ্ট বলে মনে করি
ইয়ান জনসন

একটি ভেরিয়েবলের মধ্যে নম্বরগুলি সংরক্ষণ করা কোনও ডিফল্ট ইনপুট পদ্ধতিগুলির মধ্যে একটি নয় ... যাতে অতিরিক্ত পদক্ষেপ পাওয়া যায় না, তবে আপনার এখন পর্যন্ত যা আছে তা দুর্দান্ত :)
ট্রাইকোপলাক্স

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

এটি স্থান সীমাবদ্ধ বাইনারি সংখ্যা নেয়।

অবরুদ্ধ সংস্করণ:

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

গল্ফস্ক্রিপ্ট, 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
পছন্দ করেছেন
মেগাটম
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.