This document summarizes a research paper that proposes a new exact exponential branch-and-merge algorithm for solving the single machine total tardiness scheduling problem. The algorithm improves upon the best known dynamic programming approach that has a time complexity of O*(2n) by avoiding redundant computations through a node merging operation. The branch-and-merge technique decomposes the problem when assigning the longest job to different positions, generating two subproblems to schedule jobs before and after that job. It achieves a time complexity that converges to O*(2n) while keeping polynomial space complexity, improving the state-of-the-art for this NP-hard problem.