BrainFlow
BrainFlowとは何ですか?
BrainFlowはBrainF ** k(BFk)の拡張機能であり、追加機能と混乱のための3つの追加コマンドがあります。
どのコマンド?
通常のBFkコマンドに加えて、次のものもあります。
^ セルの値に応じて、セル#にジャンプします。例:値が4のセル#0にいる場合、^はセル#4にジャンプします。
= セルの値をセルのインデックスに設定します。例:値が0のセル#4にいる場合、=は値を4に設定します。
& 現在のセルの値に基づいて、現在のセルの値をセルの値と等しく設定します。(これは言いにくいので、例を示します!)例:セル#33にいて、このセルの現在の値は7であり、セル#33の現在の値をセル#7の値に設定します。
オプションの課題
以下のいずれかを達成すると、指定されたボーナスがバイト数に適用されます。
Interpreter written in BrainFlow
(サンプルで解釈でき、少なくとも1つの意味のある ^ = または &が含まれます): スコア/ 3
Interpreter written in BrainF**k:
スコア/ 2
Doesn't contain any English letters (in either upper or lower case):
スコア-20
Doesn't contain any of the BrainFlow / BFk commands in the interpreter itself:
スコア-50
例
Javaインタプリタの例:
import java.util.Scanner;
public class Interpreter {
private String exp;
private int[] values = new int[256];
private int index = 0;
private Scanner in;
public Interpreter(String exp, Scanner in){
this.exp = exp;
this.in = in;
}
public void run(){
//Reset index and values
for(int i = 0; i < values.length; i++){
values[i] = 0;
}
this.index = 0;
System.out.println("Starting...");
this.process(this.exp, false);
System.out.println("\nDone.");
}
private void process(String str, boolean loop){
boolean running = loop;
do{
for(int i = 0; i < str.length(); i++){
switch(str.charAt(i)){
case '>':increaseIndex();break;
case '<':decreaseIndex();break;
case '+':increaseValue();break;
case '-':decreaseValue();break;
case '[':
String s = str.substring(i);
int j = this.getClosingIndex(s);
if(this.values[this.index] == 0){
i +=j;
break;
}
process(s.substring(1, j), true);
i += j;
break;
case '.':
int v = this.values[this.index];
System.out.print((char)v);
break;
case ',':this.values[this.index] = this.in.next().charAt(0);break;
case '^':this.index = this.values[this.index];break;// Jumps to the index specified in the current cell.
case '=':this.values[index] = this.index;break;// Sets the value at cell #x to x
case '&':this.values[index] = this.values[this.values[index]];break;// If cell contains X, makes value of current cell equal to value in cell X
default:
//Ignore others
break;
}
}
if(this.values[this.index] == 0){
running = false;
}
}while(running);
}
private void increaseIndex(){
if(++this.index >= this.values.length){
this.index = 0;
}
}
private void decreaseIndex(){
if(--this.index < 0){
this.index = this.values.length - 1;
}
}
private void increaseValue(){
int newVal = this.values[this.index] + 1;
if(newVal >= this.values.length){
newVal = 0;
}
this.values[this.index] = newVal;
}
private void decreaseValue(){
int newVal = this.values[this.index] - 1;
if(newVal < 0){
newVal = this.values.length - 1;
}
this.values[this.index] = newVal;
}
private int getClosingIndex(String str){
int openings = 0;
int closings = 0;
for(int i = 0; i < str.length(); i++){
char c = str.charAt(i);
if(c == '['){
openings++;
}else if(c == ']'){
closings++;
}
if(openings == closings){
return i;
}
}
return -1;
}
}
ゴルフにさえ近くないが、良い出発点を提供するはずです。
最も低い最終スコアが勝ちます。スコアは、該当するチャレンジの削減が考慮された後のプログラムのバイト数です。
テスト中
次のBrainFlowプログラムは、標準入力から「+」文字を読み取った後に、指定された出力を印刷する必要があります。
<<,++++[>++++[>++++<-]<-] Set cell #0 to a value dependent on input
>>>+[[-]&>=]+& Set every other cell to that value
[ Start loop
+^ Add one to current value and jump to that cell index
. Print the value at that cell
& Copy value from specified cell
] End loop
出力:
ðñðòñðòðôóòñóñôóðòõóñõðôôóòñööõôöðóöðõðùõñô÷ùõóñöóùñô÷øôøõôòöõóðòöóñ÷ðõôûôòú÷úø÷öùøöùñøðùúðûðþöûñùýøðòñ
subset
に変更されましたextension
。フィードバックをお寄せいただきありがとうございます。
++&
、年齢+++&
を取得したり、生まれた月を取得したりできます。もちろん、64番目のセルはデフォルト値の0です)