Instead of deriving the relations one by one, count by category: how many strong entities are there, how many multi-valued attributes, and how many many-to-many relationships, since each of these always needs a dedicated relation of its own under the standard mapping rules.
Total participation would only save a relation if the relationship were one-to-many, since then the "many" side's table could absorb the foreign key of the "one" side. R12 is many-to-many, so that shortcut does not apply, and it must stay as its own bridge table.
Adding up: 2 entity relations + 1 multi-valued attribute relation + 1 relationship relation gives 4 relations in total, and since there is no other functional dependency, each is already in 3NF without further splitting.
$$\boxed{4}$$