Instead of storing an array of integers, why not put them all into one integer?
oldArray = [0, 1, 1, 0, 1]
newValue = 22 (binary 10110)
If you want to check if a particular bit position is set, do a bitwise comparison with two to the power of that position:
is bit #3 position 2 set?
compare newValue AND 8 (2^3)
newValuevalue: 10110
8: 4 (2^2): 00100
result: 00100 --> true
is bit #4 position 0 set?
newValuevalue: 10110
16: 01000
1 (2^0): 00001
result: 00000 --> false
Do a search for bitwise comparison and you should find a lot of help.
Here are some good Stack Overflow questions which might help:
http://stackoverflow.com/questions/276706/what-are-bitwise-operators
http://stackoverflow.com/questions/47981/how-do-you-set-clear-and-toggle-a-single-bit-in-c
