Have you considered using a static array, and then writing some methods to maintain the list, making the bullets visible/invisible rather than constantly re-allocating the objects over and over.
In my game Alien Invasion, I used a rather large static array, if you don't believe the kind of speed improvement, you might like to check it out here:
http://www.programmerinprogress.com/USE ... %201_1.zip
Also, welcome to the forum, I hope my answer helped
PS: personally I wouldn't recommend dynamic allocation unless you REALLY can't determine a maximum or minimum amount of objects, or there is a huge need for the memory at a specific time.
Just work out how many bullets could possibly be on the screen at any one time, and size the array accordingly.
EDIT 2: there are methods in the std::vector definition that allow you to remove specific elements from the list, I believe vec.erase(location); will remove the element, and deallocate the memory I hope

---------------------------------------------------------------------------------------
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D
I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P