This question is similar to an existing one, except that the current question requires the polygon centroid formula not to cube coordinates, which is essential to my application.
The nature of the application I am working on requires integer coordinates. For the purpose of computing areas we can double the number of bits, i.e. from 32 to 64 or from 64 to 128 bits, so that coordinate multiplication doesn't overflow. For centroid of a polygon we implemented the standard formula, the same one as in the SO question cited above as well as dozens other online sources. However, because the standard centroid of a polygon formula essentially cubes the coordinates (by multiplying coordinates by areas) we cannot use it; we have already seen integer overflow in some tests.
Thus the question: is it possible to find the centroid of a polygon without cubing the coordinates?