得分: 4787486 41439404086426(无随机生成的数据)
(其中4085639来自Lenna.png。占99.98%)
我没有随机数据的一部分。我不需要我必须付费才能获取数据的帐户吗?
很天真。这是为“ 1Aa”(49、65、97)生成的代码,并带有一些文档:
// field 0 and 1 are loop counters.
// The fields 2, 3 and 4 are for "1", "A" and "a"
++++++++++[ // do 10 times
>
++++++++++[ // do 10 times
> // "1" (49) is below 50 so we don't need to do anything here
>+ // When the loops are done, this part will have increased the value of field 3 by 100 (10 * 10 * 1)
>+ // same as above
<<<- // decrease inner loop counter
]
>+++++ // this will add 50 (10 * 5) to field 2, for a total of 50
>---- // subtract 40 from field 3, total of 60
> // Nothing done, value stays at 100
<<<<- // decrease outer loop counter
]
>>-. // subtract 1 from field 2, total now: 49, the value for "1"
>+++++. // add 5 to field 3, makes a total of 65, the value for "A"
>---. // subtract 3 from field 4, total of 97, the value for "a"
Java代码有点丑陋,但是可以工作。平均字节值越高,每个输入字节比率生成的指令越好。
如果要运行它,则必须将Lenna.png与.class文件放在同一目录中。它将分数打印到控制台,并将生成的BF代码写入名为“ output.txt”的文件中。
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Arrays;
public class BrainFuckGenerator {
public static CharSequence generate(byte[] bytes) {
final StringBuilder brainfuckBuilder = new StringBuilder();
for(int j = 0; j<10; j++)
brainfuckBuilder.append("+");
brainfuckBuilder.append("[>");
for(int j = 0; j<10; j++)
brainfuckBuilder.append("+");
brainfuckBuilder.append("[");
final StringBuilder singles = new StringBuilder();
final StringBuilder tens = new StringBuilder();
final StringBuilder goBack = new StringBuilder();
for(byte b: bytes) {
brainfuckBuilder.append(">");
for(int j=0; j<(b/100); j++) {
brainfuckBuilder.append("+");
}
tens.append(">");
if((b - (b/100)*100)/10 <= 5) {
for(int j=0; j<(b - (b/100)*100)/10; j++) {
tens.append("+");
}
} else {
brainfuckBuilder.append("+");
for(int j=0; j<10 - (b - (b/100)*100)/10; j++) {
tens.append("-");
}
}
singles.append(">");
if(b%10 <= 5) {
for(int j=0; j<b%10; j++) {
singles.append("+");
}
} else {
tens.append("+");
for(int j=0; j<10 - (b%10); j++) {
singles.append("-");
}
}
singles.append(".");
goBack.append("<");
}
goBack.append("-");
brainfuckBuilder
.append(goBack)
.append("]")
.append(tens)
.append("<")
.append(goBack)
.append("]>")
.append(singles);
return brainfuckBuilder;
}
public static void main(String[] args) {
/* Hello, World! */
int score = score("Hello, world!"+((char)0xA));
/* 255 single chars */
int charscore = 0;
for(char c=1; c<=0xff; c++)
charscore += score(String.valueOf(c));
score += Math.round(((double)charscore)/16);
/* Lenna */
final File lenna = new File("Res/Lenna.png");
final byte[] data = new byte[(int)lenna.length()];
int size = 0;
try(FileInputStream input = new FileInputStream(lenna)) {
int i, skipped=0;
while((i = input.read()) != -1)
if(i == 0)
skipped++;
else
data[size++ - skipped] = (byte)(i&0xff);
} catch (IOException e) {
e.printStackTrace();
}
score += score(Arrays.copyOf(data, size), "Lenna");
/* 99 Bottles */
final StringBuilder bottleBuilder = new StringBuilder();
for(int i=99; i>2; i--) {
bottleBuilder
.append(i)
.append(" bottles of beer on the wall, ")
.append(i)
.append(" bottles of beer.")
.append((char) 0xa)
.append("Take one down and pass it around, ")
.append(i-1)
.append(" bottles of beer on the wall.")
.append((char) 0xa)
.append((char) 0xa);
}
bottleBuilder
.append("2 bottles of beer on the wall, 2 bottles of beer.")
.append((char) 0xa)
.append("Take one down and pass it around, 1 bottle of beer on the wall.")
.append((char) 0xa)
.append((char) 0xa)
.append("No more bottles of beer on the wall, no more bottles of beer. ")
.append((char) 0xa)
.append("Go to the store and buy some more, 99 bottles of beer on the wall.");
score(bottleBuilder.toString(), "99 Bottles");
System.out.println("Total score: "+score);
}
private static int score(String s) {
return score(s, null);
}
private static int score(String s, String description) {
final CharSequence bf = generate(s.getBytes());
try(FileWriter writer = new FileWriter("Res/output.txt", true)) {
writer.write((description == null ? s : description));
writer.write(NL);
writer.write("Code:");
writer.write(NL);
writer.write(bf.toString());
writer.write(NL+NL);
} catch (IOException e) {
e.printStackTrace();
}
return bf.length();
}
private static int score(byte[] bytes, String description) {
final CharSequence bf = generate(bytes);
try(FileWriter writer = new FileWriter("Res/output.txt", true)) {
if(description != null) {
writer.write(description);
writer.write(NL);
}
writer.write("Code:");
writer.write(NL);
writer.write(bf.toString());
writer.write(NL+NL);
} catch (IOException e) {
e.printStackTrace();
}
return bf.length();
}
private static final String NL = System.getProperty("line.separator");
}
我将进行一些小的改进,但可能不会做很多改进。 做完了