Lumaca grigia , 1206 byte per l'I / O numerico, 149 byte per l'I / O unario
Per divertimento. Composizione del primo programma:
- 451 byte, convertendo il numero in punti
- 121 byte, funzione principale (una versione separata è scritta di seguito)
- 634 byte, convertendo i punti in numero
Accetta input e output numerici. L'ingresso è A
, B
, C
rispettivamente. Rispetto ad altre (quasi) O(1)
risposte, il codice ha una complessità di O(n)
. Ma per un gran numero, potrebbe prima consumare la memoria.
Appendere se non viene trovata alcuna soluzione.
INPUT p
POP Z r .!
f
POP Z o .
q
POP Z p [p]
GOTO [Z]
0
POP Z n .
GOTO w
1
POP Z n ..
GOTO w
2
POP Z n ...
GOTO w
3
POP Z n ....
GOTO w
4
POP Z n .....
GOTO w
5
POP Z n ......
GOTO w
6
POP Z n .......
GOTO w
7
POP Z n ........
GOTO w
8
POP Z n .........
GOTO w
9
POP Z n ..........
GOTO w
w
POP Z o .[o][o][o][o][o][o][o][o][o][o][n]
GOTO [r] [p]
GOTO q
!
POP Z A .[o]
INPUT p
POP Z r .@
GOTO f
@
POP Z B .[o]
INPUT p
POP Z r .#
GOTO f
#
POP Z C .[o]
POP H N .[B]
U
POP Z A [A]
POP Z B [B]
GOTO D [A]
GOTO $ [B]
GOTO U
$
POP Z A .[A][C]
POP Z H ..[H]
POP Z B .[N]
GOTO U
D
POP Z r .
POP Z M .
POP Z N ...........
POP Z z .[N]
POP Z V .[H]
+
GOTO l[V] [H]
POP Z H [H]
POP Z z [z]
GOTO ( [z]
GOTO +
(
GOTO ) [H]
POP Z z .[N]
POP Z M ..[M]
POP Z V .[H]
GOTO +
)
POP Z r .0[r]
POP Z M ..[M]
POP Z H .[M]
POP Z M .
POP Z V .[H]
POP Z z .[N]
GOTO +
l
POP Z r .0[r]
GOTO -
l.
POP Z r .1[r]
GOTO -
l..
POP Z r .2[r]
GOTO -
l...
POP Z r .3[r]
GOTO -
l....
POP Z r .4[r]
GOTO -
l.....
POP Z r .5[r]
GOTO -
l......
POP Z r .6[r]
GOTO -
l.......
POP Z r .7[r]
GOTO -
l........
POP Z r .8[r]
GOTO -
l.........
POP Z r .9[r]
GOTO -
-
GOTO / [M]
POP Z H .[M]
POP Z M .
POP Z V .[H]
POP Z z .[N]
GOTO +
/
OUTPUT [r]
f
è una funzione (forse) ricorsiva per convertire numeri interi in punti. L'argomento viene salvato [p]
e riprodotto in [o]
.
U
è un test funzionale S1>=S2
, che memorizza i parametri B, A
durante il salvataggio A-B
in A
.
Il codice che inizia da D
è uno stub che converte i punti in numeri.
Il principio alla base è lo stesso con la mia risposta in C (strappando l'output falso per soluzioni impossibili).
Versione standalone, 149 156 157 167 170 230 byte, supporta solo I / O unario
L'input deve essere punti, ad es . ..........
Per 10
.
INPUT A
INPUT B
INPUT C
POP N H .
GOTO U
$
POP N A .[A][C]
POP Z H ..[H]
U
POP Z A [A]
POP Z N ..[N]
GOTO D [A]
GOTO $ .[B] [N]
GOTO U
D
OUTPUT .[H]
U
calcola A=A-B
e passa a D
quando A<=0
. In caso contrario, $
assegna A+C
a A
e call U
.
Appendere se non viene trovata alcuna soluzione.
Trucchi: abusare della capacità del "compilatore" di interpretare una stringa vuota. È possibile fregare le condizioni in GOTO
dichiarazione per fare salti incondizionati e lo stesso trucco funziona per POP
.
Nota: posso giocare a golf più di 3 byte, ma facendo così, la mia e la risposta di WheatWizard avrebbero la stessa identica logica. Il risultato è probabilmente la soluzione GraySnail più corta e sto provando a dimostrarlo.