Skip to content

Instantly share code, notes, and snippets.

@lawrencefmm
Created March 13, 2019 00:36
Show Gist options
  • Save lawrencefmm/973cff37fe3a87e1bff50d1255f08d4b to your computer and use it in GitHub Desktop.
Save lawrencefmm/973cff37fe3a87e1bff50d1255f08d4b to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 16, maxm = (1 << 15) + 10;
int n, m;
int mat[maxn][maxn], dp[maxm][maxn];
int solve(int mask, int i)
{
if(mask == (1 << n) - 1) return dp[mask][i] = 0; // caso todas as cidades já tenham sido visitadas
if(dp[mask][i] != -1) return dp[mask][i]; // se a DP ja foi calculada
int ans = 1e9;
for(int v = 0; v < n; v++)
{
if(mask & (1 << v) or !mat[i][v]) continue; // se a cidade atual já foi visitada ou não há rota de i à v
ans = min(ans, solve((mask | (1 << v)), v) + mat[i][v]); //pego o minimo entre ir para cada vizinho
}
return dp[mask][i] = ans;
}
int main()
{
ios::sync_with_stdio(false), cin.tie(nullptr);
cin >> n >> m;
while(m--)
{
int a, b, w;
cin >> a >> b >> w;
mat[a][b] = mat[b][a] = w;
}
memset(dp, -1, sizeof(dp));
cout << solve(1, 0) << "\n"; // começando da cidade 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment