In the (unweighted) minimum k-cut problem, the goal is to partition the nodes in a given graph to at least $k$ subsets, such that the number of edges between different subsets is as small as possible.
I am interested in a variant in which the number of subsets is not fixed in advance, but there can be at most $t$ vertices in each subset. So the goal is to partition the nodes into subsets of cardinality at most $t$, such that the number of edges between different subsets is as small as possible.
Is there a polynomial-time algorithm for this problem, assuming $t$ is fixed? And assuming $t$ is part of the input?