# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1089879 | toast12 | Kronican (COCI16_kronican) | C++14 | 636 ms | 4536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, k;
cin >> n >> k;
vector<vector<int>> c(n, vector<int>(n));
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> c[i][j];
}
}
int ans = INT_MAX;
vector<int> dp((1<<n), 1e9);
dp[0] = 0, dp[(1<<n)-1] = 0;
for (int mask = (1<<n); mask >= 0; mask--) {
if (__builtin_popcount(mask) == k) continue;
for (int i = 0; i < n; i++) {
if (!(mask & (1<<i))) continue;
// try pouring contents of this glass into every other glass
for (int j = 0; j < n; j++) {
if (i != j && mask & (1<<j))
dp[mask-(1<<i)] = min(dp[mask-(1<<i)], dp[mask]+c[i][j]);
}
}
}
for (int mask = 0; mask < (1<<n); mask++) {
if (__builtin_popcount(mask) == k) ans = min(ans, dp[mask]);
}
cout << ans << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |