You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A diversi gen/GEN manca il primo input. Ad esempio nel task domino:
# Parametri:
# * N (numero di tessere)
# * R (lower bound della risposta)
# * S (seed)
2 0 1
2 2 2
3 0 3
3 3 4
4 0 5
[...]
In questo GEN (come in tutti, o quasi) il seed è l'indice dell'input. Come si può notare, manca l'indice/seed zero.
Per risolvere si dovrebbe cambiare in:
# Parametri:
# * N (numero di tessere)
# * R (lower bound della risposta)
# * S (seed)
#COPY: testo/input0.txt
2 0 1
2 2 2
3 0 3
3 3 4
4 0 5
[...]
creando il file opportuno dentro testo/ (bonus: usare quel file anche da testo/testo.tex, includendolo con \input{}, in modo da minimizzare la duplicazione dei dati).
The text was updated successfully, but these errors were encountered:
A diversi
gen/GEN
manca il primo input. Ad esempio nel task domino:In questo
GEN
(come in tutti, o quasi) il seed è l'indice dell'input. Come si può notare, manca l'indice/seed zero.Per risolvere si dovrebbe cambiare in:
creando il file opportuno dentro
testo/
(bonus: usare quel file anche datesto/testo.tex
, includendolo con\input{}
, in modo da minimizzare la duplicazione dei dati).The text was updated successfully, but these errors were encountered: