Responder1
Aqui está uma possibilidade de obter a forma e as setas. Nenhuma tentativa de reprodução dos textos foi feita, não sou muito bom em digitação porque só tenho garras.
\documentclass{article}
\usepackage{array}
\usepackage{makecell}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
\begin{tabular}{*{5}{|p{1cm}}|}
\hline
\makecell[lb]{
\tikzmarknode{S1}{S:0}\\
T:1\\
X:2
} & \makecell[lb]{
S:0\\
T:2\\
X:4
} & xyz & abc & def\\
\hline
\multicolumn{1}{c|}{} & abc & uvw & stu & \makecell[lb]{
S:1\\
T:1\\
\tikzmarknode{X3}{X:2}
} \\
\cline{2-5}
\multicolumn{2}{c|}{} & uvw & \makecell[lb]{
S:0\\
T:2\\
X:4
} & fgh \\
\cline{3-5}
\multicolumn{3}{c|}{} & \makecell[lb]{
S:0\\
T:2\\
X:4
} & fgh \\
\cline{4-5}
\multicolumn{4}{c|}{} & \makecell[lb]{
S:0\\
T:2\\
X:4
} \\
\cline{5-5}
\end{tabular}
\begin{tikzpicture}[overlay,remember picture]
\draw[-latex] (S1) -- (X3);
\end{tikzpicture}
\end{document}