Performance isn't your most important factor. If it was, your app wouldn't be hosted on a single shared server, it would be hosted on a cluster of dedicated servers.
If you want to do the best job you can on this project, then use whichever framework you already understand best. You'll better know how to get good performance out of it because of your experience with it, and that may make up for whatever advantage some other framework has.
It's likely the code you write will have the most impact on performance.
Also, it's likely your app won't see enough traffic for this to really matter. In the event it does, at some point you'll want to move it off of a shared server to a dedicated server, regardless of what framework you use. Eventually you'll be running it on a cluster of servers with a load balancer in front of it, and your challenge will be things like how to shard your database.
Edit:
Here are some benchmarks of a variety of PHP frameworks, which include both symfony and yii, and zf1 but not 2.
In that particular benchmark, it looks like symfony2 is faster than yii which is faster than symfony1, which is faster than zend. They're all of course slower than raw html or raw php.
I think choosing a framework based on a benchmark is a bad idea though. Your own code will be doing something different, and perform completely different.
You might find their methodology useful though. You might want to run siege yourself and see how well your site performs, and what difference making various changes makes. (Although if you're on shared hosting, you probably shouldn't run siege against it, you might bring down everyone's site!)
For "maintenance and development time", your familiarity with the framework is probably going to matter more than the framework itself. And your own ability to be productive and write maintainable code is even more important, regardless of framework choice.
Good luck on your project!