जावास्क्रिप्ट (ईएस 7), 108 बाइट्स
वर्णों के मैट्रिक्स के रूप में इनपुट लेता है।
f=m=>(g=(y,X,V)=>m.map(r=>r.map((v,x)=>V?v>f&V>'a'>(x-X)**2+y*y-2?r[x]=n--:0:v<f?g(-y,x,v):n++)|y++))(n=0)|n
इसे ऑनलाइन आज़माएं!
मेरे मूल उत्तर के समान, लेकिन करना V>'a'>(x-X)**2+y*y-2वास्तव में नीचे वर्णित हेक्सा चाल का उपयोग करने से 1 बाइट कम है। ¯ \ _ (ツ) _ / ¯
जावास्क्रिप्ट (ईएस 7), 109 बाइट्स
वर्णों के मैट्रिक्स के रूप में इनपुट लेता है।
f=m=>(g=(y,X,V)=>m.map(r=>r.map((v,x)=>V?v>f&(x-X)**2+y*y<V-8?r[x]=n--:0:v<f?g(-y,x,'0x'+v):n++)|y++))(n=0)|n
इसे ऑनलाइन आज़माएं!
कैसे?
Quadrance दो अंक की और के रूप में परिभाषित किया गया है:A1=(x1,y1)A2=(x2,y2)
Q(A1,A2)=(x2−x1)2+(y2−y1)2
पूर्णांक निर्देशांक को ध्यान में रखते हुए, यह निम्नानुसार है:
854585212541∙145212585458
इसलिए:
- एक प्रकार A A एंटीडोट पर स्थित है, स्थित वायरस को मार यदिA1A2Q(A1,A2)<2
- एक ग्रुप बी में स्थित मारक पर स्थित एक वायरस को मारने के लिए सक्षम है अगरA1A2Q(A1,A2)<3
आसानी से, इस विशेष ऊपरी बाउंड ( या ) को हेक्साडेसिमल से एंटीडेट चरित्र को दशमलव में परिवर्तित करके और घटाकर प्राप्त किया जा सकता है :238
- A16−810=210
- B16−810=310
टिप्पणी की गई
f = // named function, because we use it to test if a character
// is below or above 'm'
m => ( // m[] = input matrix
g = ( // g is a recursive function taking:
y, // y = offset between the reference row and the current row
X, // X = reference column
V // V = reference value, prefixed with '0x'
) => //
m.map(r => // for each row r[] in m[]:
r.map((v, x) => // for each value v at position x in r[]:
V ? // if V is defined:
v > f & // if v is equal to 'v'
(x - X) ** 2 + // and the quadrance between the reference point and
y * y // the current point
< V - 8 ? // is less than the reference value read as hexa minus 8:
r[x] = n-- // decrement n and invalidate the current cell
: // else:
0 // do nothing
: // else:
v < f ? // if v is either 'a' or 'b':
g( // do a recursive call:
-y, // pass the opposite of y
x, // pass x unchanged
'0x' + v // pass v prefixed with '0x'
) // end of recursive call
: // else:
n++ // increment n
) | y++ // end of inner map(); increment y
) // end of outer map()
)(n = 0) // initial call to g with y = n = 0
| n // return n