First off, setting Scope to "subtree" is unnecessary when you already have the DN you are looking for.

Also, how about finding all objects whose "manager" property is the person you look for, then iterating them. This should generally be faster than the other way around.

    (&(objectCategory=user)(manager=<user-dn-here>))

EDIT: Setting the SearchRoot to the DN of the user in question and the SearchScope to "Base" also is a fast way to pull a single object out of AD.