Divide & Conquer (D&C) Paradigm Breaking down a problem into two or more subproblems of the same or related type. The solutions to the subproblems are combined to be a solution to the original problem. main step Divide: Break the original problem into smaller, often identical or similar subproblems. This division continues recursively until the subproblems become simple enough to be solved direc..