9忍者之死


12

受到聊天中对话的启发。

您在此挑战中的目标是模仿忍者并计算他留下的死亡人数。

眼镜

您的忍者开始时还有9人死亡。他还获得了不可或缺的开始健康状况作为输入。

然后,他将改变自己健康状况的事件清单作为输入。这些可以是负整数,正整数或零整数。

在任何时候,如果他的健康状况达到或低于零,他就会丧命,并且健康状况会恢复到最初的健康状况。

您的程序应报告他留下的死亡人数。如果他的剩余零个或更少,则应dead改为输出。

这是,因此以字节为单位的最短代码胜出!

测试用例

3, [] -> 9
100, [-20, 5, -50, 15, -30, -30, 10] -> 8
10, [-10, -10, -10, -10] -> 5
10, [-10, -10, -10, -10, -10, -10, -10, -10, -10] -> dead
0, [] -> dead
0, [1] -> dead
100, [10, -100] -> 9

1
好极了!!!我的聊天帖子已链接!!!:P
Rɪᴋᴇʀ

8
好像我遇到了麻烦...
NinjaBearMonkey '16

因此,事件的顺序是“如果<= 0,则死亡,读取一个数字,相加,然后重复”?
lirtosiast 2016年

@ThomasKwa是的,但是死亡可能会发生多次
Maltysen

1
忍者可以像时间领主那样再生吗?请?
Ashwin Gupta'1

Answers:


8

果冻30 28 26 字节

»0o⁴+
;@ñ\<1S_9«0N“dead”×?

在线尝试!

怎么运行的

;@ñ\<1S_9«0N“dead”×?  Main link. Input: e (events), h (initial health)

;@                    Prepend h to e.
  ñ\                  Reduce the resulting array by the next, dyadic link.
                      This returns the array of intermediate results.
    <1                Check each intermediate value for non-positivity.
      S               Sum. This calculates the number of event deaths.
       _9             Subtract 9 from the result.
         «0           Take the minimum of the result and 0. This yields 0 if no
                      lives are left, the negated amount of lives otherwise.
                   ?  Conditional:
                  ×     If the product of the minimum and h is non-zero:
           N              Return the negated minimum.
            “dead”      Else, return "dead".


»0o⁴+                 Dyadic helper link. Arguments: x, y

»0                    Take the maximum of x and 0.
                      This yields x if x > 0 and 0 otherwise.
  o⁴                  Take the logical OR of the result and the second input (h).
    +                 Take the sum of the result and y.

¯_(ツ)_ /¯丹尼斯获胜
downrep_nation

7

Japt,40 39 32字节

U¬©(9-Vf@T=X+(T¬²ªU)<1} l)¬²ª`Ü%

在线尝试!

怎么运行的

昨晚尝试打高尔夫球时(远离计算机,不少于),我遇到了一个有趣的替代品>0¬。在数字上,这取平方根,返回NaN负数。NaN是虚假的,因此这与真实/虚假地返回的结果完全相同>0

进一步扩展此技巧,我们可以将T重置为U,前提是它>=0只有五个字节:T¬²ªU。这是如何运作的?让我们来看看:

T    ¬      ²       ªU
     sqrt   square  if falsy, set to U (JS's || operator)
4    2      4       4
7   ~2.646  7       7
0    0      0       U
-4   NaN    NaN     U
-7   NaN    NaN     U

如您所见,T¬²返回NaNif是否T为负;否则,返回T。由于NaN0都是虚假的,因此提供了一种轻松的方法来重置忍者的健康状况ªU。如果该数字为正数或为"dead"负数,此技巧还可以用于返回忍者的生命。

全部放在一起:

           // Implicit: U = starting health, V = events, T = 0
U©        // If U is positive,
Vf@     }  // Filter out the items X in V that return truthily from this function:
 T=X+      //  Set T to X plus
 (T¬²ªU)   //   If T is positive, T; otherwise, U.
           //  This keeps a running total of the ninja's health, resetting upon death.
 <1        //  Return (T < 1).
9-    l)   // Take the length of the resulting array and subtract from 9.
           // This returns the number of lives the ninja has left.
¬²         // If the result is negative, set it to NaN.
ª`Ü%       // If the result of EITHER of the two parts above is falsy, return "dead".
           //  (`Ü%` is "dead" compressed.)
           // Otherwise, return the result of the middle part (lives left).
           // Implicit: output last expression

如果保证输入是非负的,甚至是正的,我们可以打1或4个字节:

U©(9-Vf@T=X+(T¬²ªU)<1} l)¬²ª`Ü%  // U is non-negative
9-Vf@T=X+(T¬²ªU)<1} l)¬²ª`Ü%     // U is positive

6

JavaScript ES6,62 60 58字节

@ETHproductions节省了4个字节

(a,b,d=9,l=a)=>b.map(i=>l=l+i<1?d--&&a:l+i,a)|d<1?"dead":d

在线尝试(所有浏览器都可以使用)

说明

(a,b,    // a = 1st input, b = 2nd input
 d=9)=>  // Lives counter

  (b.reduce((l,i)=>     // Loop through all the health changes
    l+i<1                 // If (health + health change) < 1
    ?(d--,a)              // Decrease life, reset health
    :l+i                  // Return new health
  ,a)                   // Sets starting health to `a`
  ,d<1?        // Lives is less than 1
   "dead":d);  // Output "dead" otherwise lives left

d--&&a工作b.reduce(...)&&d<1?"dead":d吗?
ETHproductions 2016年

map击败reduce在大多数情况下:(a,b,d=9,l=a)=>b.map(i=>l=l+i<1?d--&&a:l+i)&&d<1?"dead":d是57
ETHproductions

@ETHproductions谢谢,我不认为.reduce(...)&&会因为.reduce回报0而行不通。
Downgoat

(a,b,d=9,l=a)=>b.map(i=>l=l+i<1?d--&&a:l+i,a)|d<1?"dead":d代替吗?
ETHproductions 2016年


2

Haskell,81 77 75字节

p l i h a|l<1="dead"|i<1=p(l-1)h h a|[]<-a=show l|x:y<-a=p l(i+x)h y
p 10 0

用法示例:p 10 0 100 [-20, 5, -50, 15, -30, -30, 10]->"8"


1

珀斯32

 u+?>GZG&=hZQH+E0Q?&Q<Z9-9Z"dead

请注意,有一个前导空间。这可能不是最好的方法,但这是我想到的第一件事。通过将值添加到忍者的生命值,并增加计数器并在其降至零以下时重置生命值,来减少过度输入。我们在列表的末尾添加一个零,以计数最后一次更改是否杀死了忍者,然后进行一些检查以查看忍者是否死亡。零起始运行状况是硬编码的。

测试套件


1

MATL,32岁

9yi"@+t0>~?x1-y]]g*wxt0>~?x'dead'

说明

9        # push 9
y        # duplicate 2nd value to top (there is none -> get it from input first)
i        # get input and push it

现在,堆栈如下所示(用于input 100, [-20, 5, -50, 15, -30, -30, 10]):

100        9        100        [-20, 5, -50, 15, -30, -30, 10]

reload   deaths    health
value    left

弹出数组并循环

"            ]    # loop
 @+               # add to health
   t0>~?    ]     # if health is zero or less
        x1-y      # delete health counter, decrement life counter, reload health

如果运行状况为零,则将死亡计数器设置为零。的特殊情况处理initial health = 0

g        # health to bool
*        # multiply with death counter

从堆栈中删除重新加载值

wx

如果死亡计数器为零或更少,则将其删除并打印“ dead”。

t0>~?x'dead'

1

TeaScript36 34 31字节

yR#l+i<1?e─·x:l+i,x);e≥0?e:D`Ü%

类似于我的JavaScript答案。最后4个字符是字符串“ dead”的解压缩。

TeaScript的在线解释器不支持数组输入,因此您将需要打开控制台,并通过键入以下内容来运行它:

TeaScript( `yR#l+i<1?(e─,x):l+i,x);─e>0?e:D\`Ü%` ,[
  10, [-10, -10, -10, -10]
],{},TEASCRIPT_PROPS);

说明

      // Implicit: x = 1st input, y = 2nd input
yR#   // Reduce over 2nd input
  l+i<1?  // If pending health is less then 1
  (e─,x): // then, decrease life counter, reset health
  l+i     // else, modify health
,x);  // Set starting health
─e>0? // Ninja is alive?
e:    // Output lives left
D`Ü%  // Decompress and output "dead"

1

Python 2.7版,82个 66 55 106字节

感谢@RikerW为-16个字节。:(

感谢@Maltysen提供-11个字节。:(

i=input;h=[i()]*9;d=i()
if 0==h[0]:print'dead';exit()
for x in d:
 h[0]+=x
 if h[0]<=0:h=h[1:]
y=len(h)
print['dead',y][y!=0]

首先输入运行状况,然后输入,然后以列表形式输入事件。


0

C#207

class P{static void Main(string[]a){int h=int.Parse(a[0]),H=h,l=9,i=1;if(a.Length!=1){for(;i<a.Length;i++){H+=int.Parse(a[i]);if(H<=0){l--;H=h;}}}System.Console.Write(h==0?"dead":l<=0?"dead":l.ToString());}}

通过参数流获取输入。第一个参数是运行状况的数量,其余所有参数是事件列表。

可读/非高尔夫版本

class Program
{
    static void Main(string[]a)
    {
        int health = int.Parse(a[0]);
        int Health = health;
        int lives = 9;

        if(a.Length!=1)
        {
            for (int i = 1;i < a.Length;i++)
            {
                Health += int.Parse(a[i]);
                if (Health <= 0)
                {
                    lives--;
                    Health = health;
                }
            }
        }

        System.Console.Write(health == 0 ? "dead" : lives <= 0 ? "dead" : lives.ToString());
    }
}

例子:

  • CSharp.exe 3 => 9

  • CSharp.exe 100 -20 5 -50 15 -30 -30 10 => 8

(附言)CSharp.exe是用作示例的名称。实际上,您必须这样调用:[program_name.exe]参数,不带方括号。

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.