add: 230315-CN

This commit is contained in:
Eatswap 2023-03-15 12:03:32 +08:00
parent 66ac5f1bf2
commit a5c848b17c
Signed by: Eatswap
GPG Key ID: BE661106A1F3FA0B
2 changed files with 30 additions and 1 deletions

29
cpp/2303/230315-CN.cpp Normal file
View File

@ -0,0 +1,29 @@
#include <vector>
/**
* 1615. Maximal Network Rank
*
* There is an infrastructure of n cities with some number of roads connecting these cities. Each roads[i] = [ai, bi] indicates that there is a bidirectional road between cities ai and bi.
* The network rank of two different cities is defined as the total number of directly connected roads to either city. If a road is directly connected to both cities, it is only counted once.
* The maximal network rank of the infrastructure is the maximum network rank of all pairs of different cities.
* Given the integer n and the array roads, return the maximal network rank of the entire infrastructure.
*/
class Solution {
public:
static int maximalNetworkRank(int n, const std::vector<std::vector<int>>& roads) {
bool G[105][105]{};
int cnt[105]{};
for (const auto& i : roads) {
G[i[0]][i[1]] = G[i[1]][i[0]] = true;
++cnt[i[0]];
++cnt[i[1]];
}
int ans = 0;
for (int i = 0; i < n; ++i)
for (int j = 0; j < n; ++j)
if (i != j)
ans = std::max(ans, cnt[i] + cnt[j] - G[i][j]);
return ans;
}
};

View File

@ -3,4 +3,4 @@ PROJECT(2303)
SET(CMAKE_CXX_STANDARD 23)
ADD_EXECUTABLE(2303 230315.cpp)
ADD_EXECUTABLE(2303 230315-CN.cpp)