\begin{tikzpicture}[scale=0.5]
\begin{axis}[
axis lines = center,
axis on top,
xmin=-3.3,
xmax=3.3,
ymin=-3.3,
ymax=3.3,
y=1cm,
x=1cm,
ytick={-3,...,3},
xtick={-3,...,3},
xlabel = x,
ylabel = y,
font=\tiny
]
\addplot [
name path = A,
thick,
] {0.5*x + 1};
\addplot[name path=C,draw=none] {3.3};
\addplot [
name path = B,
thick,
] {0.5*x*x-2};
\addplot[name path=D,draw=none] {-3.3};
\addplot[pattern=north west lines,pattern color=blue!30] fill between[of=A and C];
\addplot[pattern=north east lines,pattern color=red!30] fill between[of=B and D];
\addplot[only marks,mark=o] coordinates {
(2, 2)
(0, 1) (1, 1) (2, 1)
(-1, 0) (0, 0) (1, 0)
(-1, -1) (0, -1) (1, -1)
};
\end{axis}
\end{tikzpicture}