# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
855902 | wakandaaa | Kronican (COCI16_kronican) | C++17 | 696 ms | 4544 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define all(x) x.begin(), x.end()
#define getbit(x, i) (((x) >> (i)) & 1)
#define bit(x) (1 << (x))
#define file ""
using namespace std;
mt19937_64 rd(chrono::steady_clock::now().time_since_epoch().count());
long long rand(long long l, long long r) {
return l + rd() % (r - l + 1);
}
const int N = 20 + 5;
const int mod = 1e9 + 7; // 998244353;
const int inf = INT_MAX;
const long long llinf = LLONG_MAX;
const int LOG = 25; // LOG + 1
template<class T> bool minimize(T &a, T b) {
return a > b ? (a = b, true) : false;
}
template<class T> bool maximize(T &a, T b) {
return a < b ? (a = b, true) : false;
}
template<class T> bool add(T &a, T b) {
a += b;
while (a > mod) a -= mod;
return true;
}
int n, k;
int c[N][N];
int f[bit(20)];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
// freopen(file".inp", "r",stdin);
// freopen(file".out", "w",stdout);
cin >> n >> k;
for (int i = 1; i <= n; ++i) for (int j = 1; j <= n; ++j)
cin >> c[i][j];
memset(f, 0x3f, sizeof f);
int ans = f[0];
f[bit(n) - 1] = 0;
for (int x = bit(n) - 1; x >= 0; --x) {
for (int i = 1; i <= n; ++i) if (getbit(x, i - 1)) {
int y = (x ^ bit(i - 1));
int cost = inf;
for (int j = 1; j <= n; ++j) if (getbit(y, j - 1)) cost = min(cost, c[i][j]);
f[y] = min(f[y], f[x] + cost);
}
}
for (int mask = 1; mask < bit(n); ++mask) {
if (__builtin_popcount(mask) <= k) ans = min(ans, f[mask]);
}
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |