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 Search base to the DN of the user in question is and the Scope to "Base" also a fast way to pull a single object out of AD.