We want to express [1, 1, 1] in terms of [1, 1, 0], [1, 2, 0], and [1, 2, 1].
This is a system of 3 equations.
[1, 1, 1] = x*[1, 1, 0] + y*[1, 2, 0] + z*[1, 2, 1]
Solving for x, y, z, we get...
x=1
y=-1
z=1
Since the transform is linear, we know
T(a + b) = T(a) + T(b)
Or in this case
T([1, 1, 1]) = T([1, 1, 0] - [1, 2, 0] + [1, 2, 1]) =
T([1, 1, 0]) - T([1, 2, 0]) + T([1, 2, 1])
Now, just plug in your values for each of those and simplify.