建筑拆除


11

挑战

编写完整的程序/功能,以每秒1层的速度拆除给定的建筑物。

输入

输入是通过STDIN(或使用您的语言所说的任何东西)或通过函数的ARGUMENT 构建的t = 0秒

   |
  |#|
  {#}
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

输入包括:

  • | 标记楼层的开始和结束。
  • {}用炸药在地板上做标记。
  • # 是装饰用的窗户。
  • 是空间,它在地板内无处不在的#任何地方。
  • T 标记为地面(无法拆除)。
  • * 标志着引爆的地板。

输入规则:

  • 建筑物从顶部开始|并在地面上结束(no(T)= no(char used in ground floor))。
  • #在每一层楼的每个奇怪的地方都有一扇窗户。
  • T 标记您输入的结尾。
  • 只有一个地板由炸药。
  • 每层楼都由奇数制成。字符。
  • 当您爬下楼层时,楼层可以等于前一层的大小,也可以大2个字符。
  • 输入可以作为chars或的数组strings

输出:

t = 0.5秒

   |
  |#|
  ***
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 1秒

   |
  |#|
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 1.5秒

   |
  ***
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 2秒

   |
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 2.5秒

   *
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 3秒

 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 3.5秒

 *****
|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 4秒

|# # #|
|# # #|
|# # #|
TTTTTTT  

t = 4.5秒

*******
|# # #|
|# # #|
TTTTTTT  

t = 6.5秒

*******
TTTTTTT  

t = 7秒

TTTTTTT  

输出规则:

  • 每层楼都以一个newline字符结尾。
  • 地面可能/可能没有尾随换行符。
  • 每0.5秒输出建筑物(或建筑物的剩余部分)。
  • 输出就像动画,每0.5秒修改一次并显示出来。
    (也可以随便张贴带有答案的GIF)

这是一个Code-Golf,所以最短字节的代码将获胜!
提交的最后日期恰好是现在的5天

(但是您知道吗?获胜不是全部,即使已经宣布获胜者,也可以用您喜欢的语言尝试挑战:)。

编辑:我改变了您接受输入的方式(实际上我很糟糕)。


从现在开始大约1小时后,应该发布什么答案
丹尼斯

从发帖时间起1小时。这样我至少有1个小时的时间来纠正与问题相关的疑问。
Mukul Kumar

8
我不确定社区是否愿意实施这种限制。如果您不确定自己的规格是否可靠,则可以在将挑战草案草稿发布到main 之前将其发布到我们的沙箱中以获取反馈。
丹尼斯

@dennis Hmm ...已移除
Mukul Kumar

两个问题:(1)我们是否可以假设任何楼层都没有尾随空白?(2)我们可以假设地面之后没有更多的输入行吗?
H沃尔特斯,2016年

Answers:


4

Vim,41 38字节

qw:sl 500m␍q/{␍qqjk^v$r*@wdd:-␍@w@qq@q

在这里,^用于文字插入符;␍用于CTRL-M。

说明

qw:sl 500m␍q睡眠半秒,同时将半秒睡眠记录为宏w。/{␍用炸药移到地板上。 qq开始记录宏q,它将递归调用自身。

jk上下移动;如果您位于最后一行(地面),则会产生错误;该错误终止了递归宏。 ^v$r*用*替换从第一个非空白字符到行尾的所有内容。 @w等待半秒钟,然后dd删除当前楼层。 :-␍如果您位于最上面,则在不终止宏的情况下向上移动地板。 @w然后再等待半秒,然后@q调用q宏(最初为空)。

q@q 停止记录宏q,然后调用它,触发递归。

动画

vim拆卸


我渴望看到一个gif!
Mukul Kumar

我注意到没有人在其中插入gif,但是您说“随意”,因此对我的帖子来说这是必须的!总之,我的回答可能是“golfed”如果进一步改写在五
^ h沃尔特斯

my answer could be "golfed" further......是不是那个还不够吗?:P
Mukul Kumar

4

的JavaScript(ES6),208个 198字节

f=
(t,s=f=>setTimeout(f,500),v=t.value.split(/(\S.*\n)/),i=v.findIndex(s=>/}/.test(s)),c=_=>t.value=v.join``,d=_=>c(v.splice(--i,2),v[3]&&s(e,i?--i:++i)),e=_=>c(v[i]=v[i].replace(/./g,'*'),s(d)))=>s(e)
<textarea id=t rows=9>
   |
  |#|
  {#}
 |# #|
|# # #|
|# # #|
|# # #|
TTTTTTT
</textarea><input type=button value=Go! onclick=f(t)>


2

Java 7中,589个 477 476字节

import java.util.*;void x(List<String>b,int x)throws Exception{Thread.sleep(500);int i=0,l=b.size(),z=x;String w;for(;i<l;i++){System.out.println(w=b.get(i));if(w.contains("{"))x=i;}System.out.println();w=b.get(x);i=w.contains("*")?1:0;if(i>0)b.remove(x);else b.set(x,z<0?r(w,'{','}'):r(w,'|','|'));if(l>1)x(b,i>0&x>0?x-1:x);}String r(String s,char y,char z){int a,b;return s.substring(0,a=s.indexOf(y))+s.substring(a,b=s.lastIndexOf(z)+1).replaceAll(".","*")+s.substring(b);}

好吧,这是一团糟/漫长的事情,但是对于Java来说,这一挑战有很多烦人的事情。Thread.sleep(500)这需要一个throws Exception; 用等量的两个分隔符替换一个子字符串*; 等等。
所有这些都会导致该程序很大。。它肯定可以打更多的球,甚至可以使用其他方法将其减半,但至少现在有了答案。;)

取消高尔夫:

void x(List<String>b, int x) throws Exception{
  Thread.sleep(500);
  int i = 0,
      l = b.size(),
      z = x;
  String w;
  for(;i<l; i++){
    System.out.println(w=b.get(i));
    if(w.contains("{")){
      x = i;
    }
  }
  System.out.println();
  w = b.get(x);
  i = s.contains("*")
       ? 1
       : 0;
  if(i>0){
    b.remove(x);
  }
  else{
    b.set(x, z < 0
              ? r(s, '{', '}')
              : r(s, '|', '|'));
  }
  if(l>1){
    x(b, i > 0 & x > 0
          ? x-1
          : x);
  }
}

String r(String s, chary, char z){
    int a, b;
    return s.substring(0, a=s.indexOf(y)) + s.substring(a, b=s.lastIndexOf(z) + 1).replaceAll(".", "*") + s.substring(b);
}

测试代码:

import java.util.*;

class M{
  void x(List<String>b,int x)throws Exception{Thread.sleep(500);int i=0,l=b.size(),z=x;String w;for(;i<l;i++){System.out.println(w=b.get(i));if(w.contains("{"))x=i;}System.out.println();w=b.get(x);i=w.contains("*")?1:0;if(i>0)b.remove(x);else b.set(x,z<0?r(w,'{','}'):r(w,'|','|'));if(l>1)x(b,i>0&x>0?x-1:x);}String r(String s,char y,char z){int a,b;return s.substring(0,a=s.indexOf(y))+s.substring(a,b=s.lastIndexOf(z)+1).replaceAll(".","*")+s.substring(b);}

  public static void main(String[] a){
    try{
        List<String> l = new ArrayList(){{
            add("   |   ");
            add("  |#|  ");
            add("  |#|  ");
            add(" {# #} ");
            add("|# # #|");
            add("|# # #|");
            add("|# # #|");
            add("TTTTTTT");
        }};
        new M().c(l, -1);
    }
    catch(Exception e){}
  }
}

在这里尝试。(在ideone上,它立即输出,而忽略sleep..)


捕获异常可能会节省一些字节。也许try{...}finally{return;}呢?
尼尔

@Neil谢谢,但是我设法合并了这两种方法,所以现在我有了一个throws Exception
Kevin Cruijssen,2016年

2

Haskell,245221字节

import System.Posix.Unistd
r=reverse
c#l|(i,j)<-span(<'!')l=i++(c<$j)
f[b]=[[b]]
f s|(h@(a:b),d:c)<-break(elem '{')s=(h++'*'#d:c):(h++c):f(init h++'{'#last h:c)|1<2=r<$>(f$r s)
mapM((usleep 500000>>).mapM putStrLn).init.f

用法示例:

mapM((usleep 500000>>).mapM putStrLn).init.f $ ["  |"," {#}"," |#|","|# #|","|# #|","TTTTT"]

这个怎么运作:

c#l|(i,j)<-span(<'!')l=i++(c<$j)    -- helper function that takes a char c and
                                    -- a string l and keeps the leading spaces
                                    -- of l and replaces the rest with c

                                    -- f takes a building (list of strings) and
                                    -- makes the sequence of collapsing buildings
                                    -- as a list of list of strings
f[b]=[[b]]                          -- base case. Stop when there's only a single
                                    -- floor left
f s                                 -- if the building has at least two floors
   |(h@(a:b),d:c)<-break(elem '{')s --   if there is at least one floor above the
                                    --   explosion
        =(h++'*'#d:c) :             --     return the current building with the
                                    --     floor to explode replaced by *
        (h++c) :                    --     followed by the current building with
                                    --     the exploded floor removed 
        f(init h++'{'#last h:c)     --     followed by a recursive call
                                    --     with the next to explode floor marked
                                    --     with '{'
   |1<2=r<$>(f$r s)                 --   if all top floors have exploded, reverse
                                    --   the left over floors, let them explode
                                    --   and reverse the floors of each building
                                    --   again.

                      f             -- let the building collapse
                 init               -- f comes with an additional building with
                                    -- a single floor of * only -> drop it
mapM(     )                         -- for every building
     (usleep 500000>>)              --   delay 0.5 sec
             mapM putStrLn          --   and print the floors

注意:threadDelayfrom GHC.Conc的来源比usleepfrom的System.Posix.Unistd要短一些,但是它仅适用于GHC编译器,因此不是通用的Haskell答案。


2

C, 314 287 281 271字节

s,e,t,i;f(char**b){char*p;do{system("CLS");i=0;do{while(!(p=b[i]))i++;if(!*b&&e==1)e=i;while(*p<33)putchar(*p++);if(!t)e=*p=='{'?i:e,s+=2;do{putchar(e==i&&t%2&&*p>16?'*':*p);}while(*p&&*p++>16);}while(*b[i++]-84);if(t++%2)b[e]=0,*b&&e>0?e--:e++;Sleep(500);}while(t<s-1);}

-10后改变!=-和避免炭文字,当它是可能的,以及isspace(许多感谢至H沃尔特斯)。但是未使用的代码保持不变。

s,e,t,i;f(char**b){char*p;do{system("CLS");i=0;do{while(!(p=b[i]))i++;if(!*b&&e==1)e=i;while(isspace(*p))putchar(*p++);if(!t)e=*p=='{'?i:e,s+=2;do{putchar(e==i&&t%2&&*p>0xF?'*':*p);}while(*p&&*p++>0xF);}while(*b[i++]!='T');if(t++%2)b[e]=0,*b&&e>0?e--:e++;Sleep(500);}while(t<s-1);}

昏迷后-6个字节{},两次后删除if

s,e,t,i;f(char**b){char*p;do{system("CLS");i=0;do{while(!(p=b[i]))i++;if(!*b&&e==1)e=i;while(isspace(*p))putchar(*p++);if(!t){s+=2;e=*p=='{'?i:e;}do{putchar(e==i&&t%2&&*p>0xF?'*':*p);}while(*p&&*p++>0xF);}while(*b[i++]!='T');if(t++%2){b[e]=0;e=*b&&e>0?e-1:e+1;}Sleep(500);}while(t<s-1);}

经过很少的优化后-26字节,删除了不必要的括号,以及将局部变量更改为global(使用自动0初始化)和b[0]by *b

f(char**b){int s=0,e=0,t=0;char*p;do{system("CLS");int i=0;do{if(!t){s+=2;if(strchr(b[i],'}'))e=i;printf(b[i]);}else{while(!(p=b[i]))i++;if(!b[0]&&e==1)e=i;do{putchar((e==i&&t%2&&!isspace(*p))?'*':*p);}while(*p&&*p++!='\n');}}while(b[i++][0]!='T');if(t%2){b[e]=0;e=(b[0]&&e)?e-1:e+1;}t++;Sleep(500);}while(--s>1);}

使用非高尔夫测试代码f

#include <stdio.h>
#include <windows.h> // to use Sleep and system

s, e, t, i;
f(char**b)
{
    char*p;
    do{
        system("CLS");
        i = 0;
        do
        {
            while (!(p=b[i]))i++; // skip demolished floors
            if (!*b && e==1) e = i;
            while (isspace(*p)) putchar(*p++); // print spaces 
            if (!t){ s += 2; e = *p == '{' ? i : e; } // find a bomb and count steps at the first iteration
            do{
                putchar(e == i && t%2 &&*p>0xF ? '*' : *p); // print floor or * for next floor at odd step
            } while (*p && *p++ >0xF); // >0xF is instead of !='\n'
        } while (*b[i++] != 'T'); // until the ground
        if (t++ % 2)
        {
            b[e] = 0; // delete the demolished floor
            e = *b&&e>0 ? e-1 : e+1; // and determine next floor to be demolished
        }
        Sleep(500);
    } while (t<s-1);
}

int main(void)
{
    char * arr[] = { "   |\n",
                     "  |#|\n",
                     "  {#}\n",
                     " |# #|\n",
                     "|# # #|\n",
                     "|# # #|\n",
                     "|# # #|\n",
                     "TTTTTTT" };
    f(arr);
}

1
您可以s,e,t像这样在全球范围之外定义s,e,t;
Mukul Kumar

@MukulKumar你确定吗?
Mark Yisri '16

是的,请继续尝试...,并i与其他人一起使用。
Mukul Kumar

我将尝试其他优化方法,并使用您的建议
-VolAnd16,2013年

@MukulKumar感谢您的建议... -23字节
VolAnd 16'Nov 28'7

1

Perl,153个字节

for(@a=<>;$a[$i]!~/{/;$i++){}for(;$a[0]!~/^T/;`sleep .5`){if($P=!$P){$a[$i]=~s/(\S.*\S|\S)/"*" x length($1)/e}else{splice(@a,$i,1);if($i){$i--}}print@a}

这使用GNU sleep命令来等待500毫秒。

非高尔夫版本

for(@a=<>;$a[$i]!~/{/;$i++){}
for(;$a[0]!~/^T/;`sleep .5`){
    if($P=!$P){
       $a[$i]=~s/(\S.*\S|\S)/"*" x length($1)/e
    } else { 
       splice(@a,$i,1);
       if($i){$i--}
    }
    print @a
 }

1

PHP,286 282 274 234 229字节

<?for($a=$argv,array_shift($a);!strstr($a[+$i++],"{"););while($a[0][0]!=T){$x=&$a[$i-=$i>0];$x=str_pad(substr($x,0,strspn($x," ")),strlen($x),"*");eval($p='echo join("\n",$a),"\n\n";usleep(5e5);');array_splice($a,$i,1);eval($p);}

从命令行参数获取输入作为字符串列表(没有换行符!)

保存到文件,运行 php <filename> ' |' ' |#|' ' {#}' ' |# #|' '|# # #|' '|# # #|' '|# # #|' 'TTTTTTT'

分解

<?
for($a=$argv,array_shift($a);   // import input
    !strstr($a[+$i++],"{"););   // find explosives
while($a[0][0]!=T)              // loop while ground not reached:
{
    $x=&$a[$i-=$i>0];               // move up if possible, reference floor
    $x=str_pad(
        substr($x,0,strspn($x," ")  // keep leading spaces
    ),strlen($x),"*");              // replace rest with asterisks
                                    // print and wait
    eval($p='echo join("\n",$a),"\n\n";usleep(5e5);');
    array_splice($a,$i,1);          // remove current floor
    eval($p);                       // print and wait
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.