# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
248715 | Vladikus004 | Kronican (COCI16_kronican) | C++14 | 1059 ms | 8800 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define inf 2e9
#define all(v) v.begin(), v.end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair <int, int> pii;
const int N = 22;
int n, k, a[N][N], dp[(1<<N)];
set <pair <int, int> > ms;
void get_dp(int mask){
for (int i = 0; i < n; i++){
if (!((1<<i) & mask)) continue;
for (int j = 0; j < n; j++){
if ((!((1<<j) & mask)) || i == j) continue;
dp[mask ^ (1<<i)] = min(dp[mask ^ (1<<i)], dp[mask] + a[i][j]);
}
}
}
bool cmp(int x, int y){
return __builtin_popcount(x) > __builtin_popcount(y);
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif // LOCAL
cin >> n >> k;
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
cin >> a[i][j];
}
}
vector <int> v;
for (int i = 1; i < (1<<n); i++)
v.push_back(i);
sort(all(v), cmp);
fill(dp, dp + (1<<n) + 3, inf);
// memset(dp, inf, sizeof dp);
dp[v[0]] = 0;
for (auto u: v)
get_dp(u);
int ans = inf;
// cout << dp[27] << "!\n";
for (int i = 1; i <= (1<<n); i++){
if (__builtin_popcount(i)==k) {
ans = min(ans, dp[i]);
// if (dp[i] == 4) cout << i << "!\n";
}
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |