def update_power_structure():
    top_candidate = find_max(authority_score, exclude=deleted_users)
    assign_role("dictator", top_candidate)

if dictator_role == vacant:
    dictator = max(population, key=authority_score)