[LeetCode] Count Ways to Build Rooms in an Ant Colony

1916. Count Ways to Build Rooms in an Ant Colony

You are an ant tasked with adding n new rooms numbered 0 to n-1 to your colony. You are given the expansion plan as a 0-indexed integer array of length n, prevRoom, where prevRoom[i] indicates that you must build room prevRoom[i] before building room i, and these two rooms must be connected directly. Room 0 is already built, so prevRoom[0] = -1. The expansion plan is given such that once all the rooms are built, every room will be reachable from room 0.

You can only build one room at a time, and you can travel freely between rooms you have already built only if they are connected. You can choose to build any room as long as its previous room is already built.

Return the number of different orders you can build all the rooms in. Since the answer may be large, return it modulo 109 + 7.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
MathHelper helper;

class Solution {
unordered_map<int, list<int>> g;
int MOD = 1e9 + 7;
pair<long, long> dfs(int room) {
if(g[room].empty()) return {1, 1};
long count(1), combination(0);
for(auto near : g[room]) {
pair<long, long> next = dfs(near);
combination += next.second;
count = (((count * next.first) % MOD) * helper.getCombinationModulo(combination, next.second, MOD)) % MOD;
}
return {count, (combination + 1) % MOD};
}
public:
int waysToBuildRooms(vector<int>& prevRoom) {
for(int i = 0; i < prevRoom.size(); i++) {
g[prevRoom[i]].push_back(i);
}

return dfs(0).first;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2021/06/27/PS/LeetCode/count-ways-to-build-rooms-in-an-ant-colony/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.