ช่วงที่เพิ่มขึ้น!


14

งานของคุณคือกำหนดจำนวนเต็มบวกสองค่าคือxและnคืนค่าตัวเลขxแรกในลำดับช่วงที่เพิ่มขึ้น

ลำดับช่วงที่เพิ่มขึ้นแรกสร้างช่วงจากหนึ่งถึงnรวม ตัวอย่างเช่นถ้าnเป็น3ก็จะสร้างรายการ[1,2,3] ] จากนั้นจะผนวกค่าnสุดท้ายซ้ำ ๆ กันที่เพิ่มขึ้น1ไปยังรายการที่มีอยู่และดำเนินการต่อ

อินพุตของn=3ตัวอย่างเช่น:

n=3
1. Get range 1 to n. List: [1,2,3]
2. Get the last n values of the list. List: [1,2,3]. Last n=3 values: [1,2,3].
3. Increment the last n values by 1. List: [1,2,3]. Last n values: [2,3,4].
4. Append the last n values incremented to the list. List: [1,2,3,2,3,4]
5. Repeat steps 2-5. 2nd time repeat shown below.

2nd repeat:
2. Get the last n values of the list. List: [1,2,3,2,3,4]. Last n=3 values: [2,3,4]
3. Increment the last n values by 1. List: [1,2,3,2,3,4]. Last n values: [3,4,5].
4. Append the last n values incremented to the list. List: [1,2,3,2,3,4,3,4,5]

กรณีทดสอบ:

n,   x,   Output
1,  49,   [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49]
2, 100,   [1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51]
3,  13,   [1,2,3,2,3,4,3,4,5,4,5,6,5]

คำตอบ:



7

เยลลี่ 4 ไบต์

Ḷd§‘

ลิงก์ dyadic ยอมรับสองจำนวนเต็มบวกxด้านซ้ายและnด้านขวาซึ่งให้รายการของจำนวนเต็มบวก

ลองออนไลน์!

อย่างไร?

Ḷd§‘ - Link: x, n              e.g   13, 3
Ḷ    - lowered range (x)             [0,1,2,3,4,5,6,7,8,9,10,11,12]
 d   - divmod (n)                    [[0,0],[0,1],[0,2],[1,0],[1,1],[1,2],[2,0],[2,1],[2,2],[3,0],[3,1],[3,2],[4,0]]
  §  - sums                          [0,1,2,1,2,3,2,3,4,3,4,5,4]
   ‘ - increment (vectorises)        [1,2,3,2,3,4,3,4,5,4,5,6,5]

3
เดี๋ยวก่อน ... divmod นั่นน่ะเหรอ? ฉลาด! และฉันกำลังดิ้นรนกับp...
Erik the Outgolfer

6

R , 33 ไบต์

function(n,x,z=1:x-1)z%%n+z%/%n+1

ลองออนไลน์!

พอร์ตการแก้ปัญหาหลามโจนาธานอัลลัน

R , 36 ไบต์

function(n,x)outer(1:n,0:x,"+")[1:x]

ลองออนไลน์!

โซลูชันดั้งเดิมของฉัน สร้างเมทริกซ์n×xโดยแต่ละคอลัมน์เป็นส่วนเพิ่มเช่น1n,2n+1,จากนั้นรับรายการxแรก(ลงคอลัมน์)


6

05AB1E , 6 ไบต์

L<s‰O>

พอร์ตของ@JonathanAllanคำตอบของ Jellyให้แน่ใจว่าได้ upvote เขา!

อินพุตแรกคือxใส่สองคือnn

ลองมันออนไลน์หรือตรวจสอบกรณีทดสอบทั้งหมด

คำอธิบาย:

L       # Push a list in the range [1, (implicit) input]
        #  i.e. 13 → [1,2,3,4,5,6,7,8,9,10,11,12,13]
 <      # Decrease each by 1 to the range [0, input)
        #  → [0,1,2,3,4,5,6,7,8,9,10,11,12]
  s    # Divmod each by the second input
        #  i.e. 3 → [[0,0],[0,1],[0,2],[1,0],[1,1],[1,2],[2,0],[2,1],[2,2],[3,0],[3,1],[3,2],[4,0]]
    O   # Sum each pair
        #  → [0,1,2,1,2,3,2,3,4,3,4,5,4]
     >  # And increase each by 1
        #  → [1,2,3,2,3,4,3,4,5,4,5,6,5]
        # (after which the result is output implicitly)

แนวทางแรกของฉันคือ 8 ไบต์ :

LI∍εN¹÷+

อินพุตแรกคือnอินพุตที่สองคือxx

ลองมันออนไลน์หรือตรวจสอบกรณีทดสอบทั้งหมด

คำอธิบาย:

L         # Push a list in the range [1, (implicit) input]
          #  i.e. 3 → [1,2,3]
 I       # Extend it to the size of the second input
          #  i.e. 13 → [1,2,3,1,2,3,1,2,3,1,2,3,1]
   ε      # Map each value to:
    N¹÷   #  The 0-based index integer-divided by the first input
          #   → [0,0,0,1,1,1,2,2,2,3,3,3,4]
       +  #  Add that to the value
          #   → [1,2,3,2,3,4,3,4,5,4,5,6,5]
          # (after which the result is output implicitly)


4

Brain-Flakขนาด 100 ไบต์

(<>)<>{({}[()]<(({}))((){[()](<{}>)}{}){{}{}<>(({})<>)(<>)(<>)}{}({}[()]<(<>[]({}())[()]<>)>)>)}{}{}

ด้วยความคิดเห็นและการจัดรูปแบบ:

# Push a zero under the other stack
(<>)<>

# x times
{
    # x - 1
    ({}[()]<

        # Let 'a' be a counter that starts at n
        # Duplicate a and NOT
        (({}))((){[()](<{}>)}{})

        # if a == 0
        {
            # Pop truthy
            {}
            <>

            # Reset n to a
            (({})<>)

            # Push 0 to each
            (<>)(<>)
        }

        # Pop falsy
        {}

        # Decrement A, add one to the other stack, and duplicate that number under this stack
        ({}[()]<
            (<>[]({}())<>)
        >)
    >)
}

ลองออนไลน์!


4

J , 13 12 ไบต์

[$[:,1++/&i.

ลองออนไลน์!

อย่างไร

เรารับxเป็น ARG ด้านซ้ายnเหมือนด้านขวา ลองมาx = 8และn = 3สำหรับตัวอย่างนี้

  • +/&i.: เปลี่ยนโฉมทั้ง args โดยการสร้างช่วงจำนวนเต็มi., ที่อยู่, หาเรื่องซ้ายกลายเป็นและหาเรื่องขวากลายเป็น0 1 2 3 4 5 6 7 0 1 2ตอนนี้เราสร้าง "ตารางเพิ่มเติม+/จากสองรายการนี้:

     0 1 2
     1 2 3
     2 3 4
     3 4 5
     4 5 6
     5 6 7
     6 7 8
     7 8 9
    
  • 1 +: เพิ่ม 1 ไปยังองค์ประกอบของตารางนี้ทุก:

     1 2  3
     2 3  4
     3 4  5
     4 5  6
     5 6  7
     6 7  8
     7 8  9
     8 9 10
    
  • [: ,: แผ่มัน,:

     1 2 3 2 3 4 3 4 5 4 5 6 5 6 7 6 7 8 7 8 9 8 9 10
    
  • [ $: กำหนดรูปร่าง$เพื่อให้มีองค์ประกอบจำนวนเดียวกันกับ ARG ดั้งเดิมที่ยังไม่มีการเปลี่ยนแปลง[ซึ่ง ได้แก่x:

     1 2 3 2 3 4 3 4 
    


4

อ็อกเทฟ 25 ไบต์

@(n,x)((1:n)'+(0:x))(1:x)

ฟังก์ชั่นไม่ระบุชื่อที่ใส่ตัวเลขnและxและเอาท์พุทแบบเวกเตอร์แถว

ลองออนไลน์!

มันทำงานอย่างไร

พิจารณาn=3และx=13 .

รหัส(1:n)'ให้เวกเตอร์คอลัมน์

1
2
3

จากนั้น(0:x)ให้เวกเตอร์แถว

0  1  2  3  4  5  6  7  8  9 10 11 12 13

การเพิ่ม(1:n)'+(0:x)องค์ประกอบนั้นฉลาดด้วยการออกอากาศดังนั้นจึงให้เมทริกซ์ที่มีผลรวมทั้งหมด:

1  2  3  4  5  6  7  8  9 10 11 12 13 14
2  3  4  5  6  7  8  9 10 11 12 13 14 15
3  4  5  6  7  8  9 10 11 12 13 14 15 16

การจัดทำดัชนีด้วยการ(1:x)ดึงxองค์ประกอบแรกของเมทริกซ์นี้ตามลำดับเชิงเส้นของคอลัมน์ (ลงจากนั้นข้าม) เป็นเวกเตอร์แถว:

1 2 3 2 3 4 3 4 5 4 5 6 5

3

Haskell , 31 ไบต์

n#x=take x$[1..n]++map(+1)(n#x)

ลองออนไลน์!

นี่อาจเป็นการเรียกซ้ำแบบที่ฉันชอบ เราเริ่มต้นด้วยค่าจาก 1 ถึง n จากนั้นเชื่อมค่าเดียวกันเหล่านั้น (ผ่านการอ้างอิงตนเอง) +1 จากนั้นเราก็หาค่า x แรก


2

Forth (gforth) , 34 ไบต์

: f 0 do i over /mod + 1+ . loop ;

ลองออนไลน์!

รหัสคำอธิบาย

: f            \ start a new word definition
  0 do         \ start a loop from 0 to x-1
    i          \ put the current loop index on the stack
    over       \ copy n to the top of the stack
    /mod       \ get the quotient and remainder of dividing i by n
    + 1+       \ add them together and add 1
    .          \ output result
  loop         \ end the counted loop
;              \ end the word definition

2

MATL , 16 , 10 ไบต์

:!i:q+2G:)

ลองออนไลน์!

-6 ไบต์บันทึกไว้ขอบคุณ Guiseppe และ Luis Mendo!

คำอธิบาย:

:!          % Push the array [1; 2; ... n;]
  i:q       % Push the array [0 1 2 ... x - 1]
     +      % Add these two arrays with broadcasting
      2G    % Push x again
        :)  % Take the first x elements

@LuisMendo ขอบคุณ! เห็นได้ชัดว่าฉันสวยสนิมกับ MATL ของฉัน :)
เจมส์










0

ถ่าน 18 ไบต์

NθFN⊞υ⊕⎇‹ιθι§υ±θIυ

ลองออนไลน์! การเชื่อมโยงคือการใช้รหัสเวอร์ชันอย่างละเอียด ฉันมีความฝันที่จะสร้างรายชื่อด้วยช่วงที่ไม่มีการทำดัชนีแล้วตัดมันอีกครั้ง แต่นั่นก็นานกว่า 2 ไบต์ คำอธิบาย:

Nθ                  Input `n` into variable
   N                Input `x`
  F                 Loop over implicit range
         ι          Current index
        ‹           Less than
          θ         Variable `n`
       ⎇   ι        Then current index else
               θ    Variable `n`
              ±     Negated
            §υ      Cyclically indexed into list
      ⊕             Incremented
    ⊞υ              Pushed to list
                Iυ  Cast list to string for implicit output

0

JS, 54 ไบต์

f=(n,x)=>Array.from(Array(x),(_,i)=>i+1-(i/n|0)*(n-1))

ลองออนไลน์!


ยินดีต้อนรับสู่ PPCG :) f=เช่นนี้ไม่ได้เป็นฟังก์ชันเวียนคุณไม่จำเป็นต้องนับ คุณสามารถบันทึกหนึ่งไบต์โดยการ curating พารามิเตอร์ ( n=>x=>) และอื่น ๆ โดยการแพร่กระจายและการทำแผนที่อาร์เรย์ ( [...Array(x)].map())
Shaggy





0

C (เสียงดังกราว) 843 ไบต์

#include <stdlib.h>
main(int argc, char* argv[]){
        int x,n;
        if (argc == 3 && (n = atoi(argv[1])) > 0 && (x = atoi(argv[2])) > 0){ 
                int* ranges = calloc(x, sizeof *ranges);
                for (int i = 0; i < x; i++){
                        if (i < n){ 
                                ranges[i] = i+1;
                        }   
                        else {
                                ranges[i] = ranges[i-n] + 1;
                        }   
                }   
        printf("[");
        for (int j = 0; j < x - 1; j++){
                printf("%d",ranges[j]);
                printf(",");
        }   
        printf("%d",ranges[x - 1]);
        printf("]\n");
        free(ranges);
        }   
        else {
                printf("enter a number greater than 0 for n and x\n");
        }   
}

2
สวัสดียินดีต้อนรับสู่ PPCG! ความท้าทายนี้ถูกติดแท็ก [code-golf] ซึ่งหมายความว่าคุณต้องทำสิ่งที่ท้าทายให้เสร็จในไม่กี่ไบต์ / ตัวอักษร คุณสามารถลบพื้นที่ว่างได้และเปลี่ยนชื่อตัวแปรเป็นอักขระเดี่ยวในรหัสของคุณ ( และargc, ) นอกจากนี้ไม่จำเป็นต้องเพิ่มข้อความเตือนใด ๆ .. คุณสามารถสันนิษฐานได้ว่าอินพุตนั้นถูกต้องเว้นแต่ว่าคำท้านั้นเป็นอย่างอื่น argvranges
Kevin Cruijssen



โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.