-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path2_1_zombit_infection.py
105 lines (90 loc) · 4.74 KB
/
2_1_zombit_infection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Copyright (c) 2012-2014 Kapiche Limited
# Author: Ryan Stuart <ryan@kapiche.com>
"""
Zombit infection
================
Dr. Boolean continues to perform diabolical studies on your fellow rabbit kin,
and not all of it is taking place in the lab. Reports say the mad doctor has his
eye on infecting a rabbit in a local village with a virus that transforms
rabbits into zombits (zombie-rabbits)!
Professor Boolean is confident in the virus's ability to spread, and he will
only infect a single rabbit. Unfortunately, you and your fellow resistance
agents have no idea which rabbit will be targeted. You've been asked to predict
how the infection would spread if uncontained, so you decide to create a
simulation experiment. In this simulation, the rabbit that Dr. Boolean will
initially infect will be called "Patient Z".
So far, the lab experts have discovered that all rabbits contain a property they
call "Resistance", which is capable of fighting against the infection. The virus
has a particular "Strength" which Dr. Boolean needs to make at least as large as
the rabbits' Resistance for it to infect them.
You will be provided with the following information: population = A 2D non-empty
array of positive integers. (The dimensions of the array are not necessarily
equal.) Each cell represents one rabbit, and the value of the cell represents
that rabbit's Resistance. All cells contain a rabbit. x = The X-Coordinate
(column) of "Patient Z" in the population array. y = The Y-Coordinate (row) of
"Patient Z" in the population array. strength = A constant integer value
representing the Strength of the virus.
Here are the rules of the simulation: First, the virus will attempt to infect
Patient Z. Patient Z will only be infected if the infection's Strength equals or
exceeds Patient Z's Resistance. From then on, any infected rabbits will attempt
to infect any uninfected neighbors (cells that are directly - not diagonally -
adjacent in the array). They will succeed in infecting any neighbors with a
Resistance lower than or equal to the infection's Strength. This will continue
until no further infections are possible (i.e., every uninfected rabbit adjacent
to an infected rabbit has a Resistance greater than the infection's Strength.)
You will write a function answer(population, x, y, strength), which outputs a
copy of the input array representing the state of the population at the end of
the simulation, in which any infected cells value has been replaced with -1. The
Strength and Resistance values will be between 0 and 10000. The population grid
will be at least 2x2 and no larger than 50x50. The x and y values will be valid
indices in the population arrays, with numbering beginning from 0.
Test cases
==========
Inputs:
(int) population = [[1, 2, 3], [2, 3, 4], [3, 2, 1]]
(int) x = 0
(int) y = 0
(int) strength = 2
Output:
(int) [[-1, -1, 3], [-1, 3, 4], [3, 2, 1]]
Inputs:
(int) population = [[6, 7, 2, 7, 6], [6, 3, 1, 4, 7], [0, 2, 4, 1, 10],
[8, 1, 1, 4, 9], [8, 7, 4, 9, 9]]
(int) x = 2
(int) y = 1
(int) strength = 5
Output:
(int) [[6, 7, -1, 7, 6], [6, -1, -1, -1, 7], [-1, -1, -1, -1, 10],
[8, -1, -1, -1, 9], [8, 7, -1, 9, 9]]
"""
def answer(population, x, y, strength):
constrain_x = len(population[0])
constrain_y = len(population)
places_to_vist = [(x, y,)]
places_visited = []
def where_next():
for item in places_to_vist:
yield item
for x, y in where_next():
if population[y][x] <= strength:
# print "Position ({}, {}) infected... ({} >= {})".format(x, y, population[y][x], strength)
places_visited.append((x, y,))
population[y][x] = -1
if x - 1 >= 0 and (x-1, y,) not in places_visited:
# print "Adding ({}, {}) to places to visit".format(x-1, y)
places_to_vist.append((x-1, y,))
if x + 1 < constrain_x and (x+1, y,) not in places_visited:
# print "Adding ({}, {}) to places to visit".format(x+1, y)
places_to_vist.append((x+1, y,))
if y - 1 >= 0 and (x, y-1,) not in places_visited:
# print "Adding ({}, {}) to places to visit".format(x, y-1)
places_to_vist.append((x, y-1,))
if y + 1 < constrain_y and (x, y+1,) not in places_visited:
# print "Adding ({}, {}) to places to visit".format(x, y+1)
places_to_vist.append((x, y+1,))
# else:
# print "Position ({}, {}) NOT infected... ({} < {})".format(x, y, population[y][x], strength)
return population
if __name__ == '__main__':
print answer([[1, 2, 3], [2, 3, 4], [3, 2, 1]], 0, 0, 2)
print answer([[6, 7, 2, 7, 6], [6, 3, 1, 4, 7], [0, 2, 4, 1, 10], [8, 1, 1, 4, 9], [8, 7, 4, 9, 9]], 2, 1, 5)