골프 CPU 골프 챌린지 : 주요 파티션


14

이 과제는 GOLF CPU에 기록되어야하는 문제 중 첫 번째 문제입니다 . 당신은 다음 중 하나를 찾을 수 있습니다 여기에

숫자의 파티션은에 N더해지는 숫자의 목록입니다 N. 주요 파티션 을 추가 소수의 목록입니다 N.

이 도전을 위해, 당신은 하나의 정수가 주어집니다 N ≥ 2. 에 대한 가장 짧은 프라임 파티션을 생성해야합니다 N. 가능한 파티션이 여러 개인 경우 파티션을 인쇄 할 수 있습니다.

예 :

9: [2, 7]
12: [5, 7]
95: [89, 3, 3]
337: [337]
1023749: [1023733, 13, 3]
20831531: [20831323, 197, 11]

당신의 프로그램은 GOLF CPU 로 작성되어야합니다 . 입 / 출력을 위해 STDIO 또는 레지스터를 사용할 수 있습니다. 목록은 순서에 상관없이 STDOUT을 사용하는 경우 공백이나 쉼표로 구분할 수 있습니다 (대괄호 필요 없음). 분명히, 솔루션의 하드 코딩은 허용되지 않으며 처음 몇 소수 이상의 하드 코딩도 허용되지 않습니다.

이것은 문제이므로 사이클 수가 가장 적은 위의 예를 해결하는 대답이 승리합니다!


나를 위해 시간 홍보 GOLF-C 하는 빠른 방법 제공, 프로그램을 .golf 실행을 좀 더 거기에 아마 작업에 ..와
Claudiu

@Claudiu Golf-C는 확실히 허용 될 것입니다
Nathan Merrill

1
크기 제한이 있습니까?
lirtosiast

I합니다 ... 골드 바흐와 레비 추측이 편리 여기에 올 것이다 의심
2012rcampion

@ThomasKwa 아니요, 크기 제한은 없지만 하드 코딩 소수 (첫 번째 커플 제외)
Nathan Merrill

답변:


1

159,326,251 회

입력되고 n출력은, r, s, 및 t(0을 무시).

# Input in register n
# Outputs in registers r, s, t
# (I use the return value as a debug parameter)

# hardcoded case n=2
cmp c, n, 2
jz skip_n2, c
  mov r, 2
  halt 0
skip_n2:
# hardcoded case n=4
cmp c, n, 4
jz skip_n4, c
  mov r, 2
  mov s, 2
  halt 0
skip_n4:

# Sieve of Eratosthenes
mov i, 1
sieve_loop:
  add i, i, 2
  lb a, i
  jnz sieve_loop, a

  mulu j, k, i, i
  geu c, j, n
  jnz end_sieve_loop, c

  sieve_inner_loop:
    sb j, 1
    add j, j, i
    lequ c, j, n
    jnz sieve_inner_loop, c

  jmp sieve_loop

end_sieve_loop:

lb a, n

# if n is even, skip to search
and c, n, 1
jz search, c

# if n is prime, the partition is simply [n]
jnz not_prime, a
  mov r, n
  halt 1
not_prime:

# if n is odd, check n-2
sub i, n, 2
lb a, i

jnz sub_3, a
# if n-2 is prime, the partition is [2, n-2]
mov r, 2
mov s, i
halt 2

sub_3:
# otherwise the partition is [3] + partition(n-3)
mov t, 3
sub n, n, 3

search:
mov i, 1
sub n, n, 1

search_loop:
  add i, i, 2
  sub n, n, 2
  lb a, i
  jnz search_loop, a
  lb a, n
  jnz search_loop, a
  mov r, i
  mov s, n
  halt 3

테스트 케이스 :

robert@unity:~/golf-cpu$ ./assemble.py partition.golf
robert@unity:~/golf-cpu$ ./golf.py -p r,s,t partition.bin n=9
2, 7, 0
Execution terminated after 51 cycles with exit code 2.
robert@unity:~/golf-cpu$ ./golf.py -p r,s,t partition.bin n=12
5, 7, 0
Execution terminated after 77 cycles with exit code 3.
robert@unity:~/golf-cpu$ ./golf.py -p r,s,t partition.bin n=95
3, 89, 3
Execution terminated after 302 cycles with exit code 3.
robert@unity:~/golf-cpu$ ./golf.py -p r,s,t partition.bin n=337
337, 0, 0
Execution terminated after 1122 cycles with exit code 1.
robert@unity:~/golf-cpu$ ./golf.py -p r,s,t partition.bin n=1023749
13, 1023733, 3
Execution terminated after 6654139 cycles with exit code 3.
robert@unity:~/golf-cpu$ ./golf.py -p r,s,t partition.bin n=20831531
229, 20831299, 3
Execution terminated after 152670560 cycles with exit code 3.
robert@unity:~/golf-cpu$ 

7

예를 들어 총주기 : 477,918,603

업데이트 1 : Lemoine의 추측 을 사용하도록 업데이트되었습니다 .

업데이트 2 : 에라토스테네스 를 사용하도록 업데이트되었습니다 . 소수를 순전히 찾지 않고 .

로 실행 :

python3 assemble.py 52489-prime-partitions.golf
python3 golf.py 52489-prime-partitions.bin x=<INPUT>

예제 실행 :

$ python3 golf.py 52489-prime-partitions.bin x=10233
5
5
10223
Execution terminated after 194500 cycles with exit code 0.

입력 예를위한 사이클 수 :

Input    Cycles
9        191
12       282
95       1,666
337      5,792
1023749  21,429,225
20831531 456,481,447

(N+1)*8힙 의 첫 번째 바이트는 N+164 비트 값을 포함하는 배열로 간주 됩니다. (힙의 크기가 제한되어 있기 때문에이 기능은 작동합니다 N < 2^57.) 의 항목 값은 다음 중 i*8하나임 을 나타냅니다 i.

Value Description
-1    Not a prime
0     Unknown
1     The largest prime found
n > 1 This is a prime and the next prime is n

배열 만들기를 마치면 다음과 같이 보입니다. [-1, -1, 3, 5, -1, 7, -1, 11, -1, -1, -1, 13, ...] .

우리 는 에라토스테네스체를 사용합니다 를 사용하여 배열을 만듭니다.

다음 프로그램은 의사 코드에서 다음을 수행합니다.

if is_prime(x):
    print x
else:
    if is_even(x):
        for p in primes:
            if is_prime(x - p):
                print p, x - p
                exit
    else:
        if is_prime(x - 2):
            print 2, x - 2
        else:
            for p in primes:
                if is_prime(x - 2 * p):
                    print p, p, 2 * p
                    exit

이것은 Lemoine의 추측Goldbach의 약한 추측 때문에 작동 합니다. Lemoine의 추측은 아직 입증되지 않았지만 아마도 2 ^ 57 이하의 숫자에 대해서는 사실 일 것입니다.

    call build_primes

    mov q, x
    call is_prime

    jnz print_prime, a

    and b, x, 1
    jz find_pair, b

    # Check if x - 2 is a prime
    sub q, x, 2
    call is_prime
    jnz print_prime_odd2, a

# Input: x, b
find_pair:
    mov p, 2
find_pair_loop:
    mov d, p
    jz find_pair_even, b

    add d, d, p

find_pair_even:
    sub q, x, d

    call is_prime
    jnz print_prime2_or_3, a

    shl i, p, 3
    lw p, i
    jmp find_pair_loop

print_prime2_or_3:
    jz print_prime2, b

    mov x, p
    call write_int_ln

print_prime2:
    mov x, p
    call write_int_ln

    mov x, q
    call print_prime

print_prime_odd2:
    mov p, 2
    call print_prime2

print_prime:
    call write_int_ln
    halt 0

# Input: x
# Memory layout: [-1, -1, 3, 5, -1, 7, -1, 11, ...]
# x: max integer
# p: current prime
# y: pointer to last found prime
# i: current integer
build_primes:
    sw 0, -1
    sw 8, -1
    sw 16, 1
    mov y, 16

    mov p, 2

build_primes_outer:
    mulu i, r, p, p
    jnz build_primes_final, r

    geu a, i, x
    jnz build_primes_final, a

build_primes_inner:
    shl m, i, 3
    sw m, -1

    add i, i, p

    geu a, i, x
    jz build_primes_inner, a

build_primes_next:
    inc p
    shl m, p, 3
    lw a, m
    jnz build_primes_next, a

    sw y, p
    mov y, m
    sw y, 1

    jmp build_primes_outer

build_primes_final:
    inc p
    geu a, p, x
    jnz build_primes_ret, a

    shl m, p, 3
    lw a, m
    jnz build_primes_final, a

    sw y, p
    mov y, m
    sw y, 1

    jmp build_primes_final

build_primes_ret:
    ret

# Input: q
# Output: a
is_prime:
    shl m, q, 3
    lw a, m
    neq a, a, -1
    ret a

write_int:
    divu x, m, x, 10
    jz write_int_done, x
    call write_int
write_int_done:
    add m, m, ord("0")
    sw -1, m
    ret

write_int_ln:
    call write_int
    mov m, ord("\n")
    sw -1, m
    ret

예제에 나열된 숫자의주기 수를 인쇄 할 수 있습니까?
Nathan Merrill

@NathanMerrill 님.
Tyilo
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.