Display deepest post category, when post have multiple categories

<?php
$ancestors_array = get_ancestors($category_id, 'category');
$very_first_ancestor_id = end($ancestors_array); // Cat3
$parent_id = reset($ancestors_array); // Cat3.1

See Function Reference/get_ancestors