in reply to Re: merging two arrays with OR operation
in thread merging two arrays with OR operation

Same, but with another one variant inside the map, using shift-right op (Shift Operators):
my @result = map { $_ + $array2[ $i++ ] + 1 >> 1 } @array1;