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

それでは、イベントの順序は「<= 0の場合は死ぬ、数字を読む、合計する、繰り返す」のでしょうか?
リルトシアスト

@ThomasKwaええ、しかし、死は複数回発生する可能性があります
マルティセン

1
忍者はタイムロードのように再生できますか?お願いします?
アシュウィングプタ

回答:


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

このトリックをさらに拡張すると>=0、たった5バイトである場合、TをUにリセットできます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

ご覧のとおり、if が負の値をT¬²返します。そうでなければ、を返します。以来と両方falsyあり、これはと忍者の健康をリセットする簡単な方法を提供します。このトリックは、その数が正の場合、または負の場合、忍者の命を返すためにも使用されます。NaNTTNaN0ª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

mapreduceほとんどのシナリオでビート:(a,b,d=9,l=a)=>b.map(i=>l=l+i<1?d--&&a:l+i)&&d<1?"dead":d57です。
ETHproductions16年

@ETHproductionsおかげで、返品の.reduce(...)&&ために機能するとは思わない.reduce0、機能しない。
ダウンゴート

(a,b,d=9,l=a)=>b.map(i=>l=l+i<1?d--&&a:l+i,a)|d<1?"dead":d代わりに動作しますか?
ETHproductions


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

Pyth、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

スタックは次のようになります(入力用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

死のカウンターがゼロ以下の場合、それを削除し、代わりに「死んだ」と出力します。

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バイト

-16バイトの@RikerWに感謝します。:(

-11バイトの@Maltysenに感謝します。:(

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-30 10 => 8

(Psst。)CSharp.exeは、例として使用される名前です。実際には、次のように呼び出す必要があります。[program_name.exe]引数、角括弧なし。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.