#include <bits/stdc++.h>
using namespace std;
int n,k;
long long d[2000009];
long long a[22][22];
long long dp(int mask,int y)
{
if (y==k)return 0;
if(d[mask]!=-1)return d[mask];
long long mn=10000000000;
long long u=10000000000;
for(int i=0;i<n;i++)
{
int l=21;
mn=10000000000;
if (((1<<i)&mask)==(1<<i))
{
for(int j=0;j<n;j++)
{
if (i!=j&&(((1<<j)&mask)==(1<<j)))
{
mn=min(mn,a[i][j]);
}
}
u=min(u,dp(mask-(1<<i),y-1)+mn);
}
}
return d[mask]=u;
}
int main()
{ios_base::sync_with_stdio(false);
cin.tie(NULL);
memset (d,-1,sizeof d);
cin>>n>>k;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cin>>a[i][j];
}
}
cout<<dp((1<<n)-1,n);
}
Compilation message
kronican.cpp: In function 'long long int dp(int, int)':
kronican.cpp:14:7: warning: unused variable 'l' [-Wunused-variable]
int l=21;
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
15992 KB |
Output is correct |
2 |
Correct |
14 ms |
15992 KB |
Output is correct |
3 |
Correct |
14 ms |
15992 KB |
Output is correct |
4 |
Correct |
14 ms |
15992 KB |
Output is correct |
5 |
Correct |
19 ms |
15992 KB |
Output is correct |
6 |
Correct |
26 ms |
15964 KB |
Output is correct |
7 |
Correct |
39 ms |
15992 KB |
Output is correct |
8 |
Correct |
73 ms |
15992 KB |
Output is correct |
9 |
Correct |
837 ms |
16036 KB |
Output is correct |
10 |
Correct |
69 ms |
15992 KB |
Output is correct |