# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
98502 | 2019-02-23T19:21:09 Z | pamaj | Kronican (COCI16_kronican) | C++14 | 2000 ms | 8576 KB |
#include <bits/stdc++.h> using namespace std; const int maxn = 20; #define int uint_fast32_t int n, k; int c[maxn][maxn]; int dp[1 << 20]; int solve(int mask) { if(__builtin_popcount(mask) >= n - k) return 0; if(dp[mask] != -1) return dp[mask]; int ans = 1e9; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { if(i == j or (mask & (1 << i)) or (mask & (1 << j))) continue; ans = min(ans, solve(mask | (1 << i)) + c[i][j]); } } return dp[mask] = ans; } int32_t main() { cin >> n >> k; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) cin >> c[i][j]; } memset(dp, -1, sizeof(dp)); cout << solve(0) << "\n"; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 9 ms | 8576 KB | Output is correct |
2 | Correct | 9 ms | 8576 KB | Output is correct |
3 | Correct | 8 ms | 8576 KB | Output is correct |
4 | Correct | 9 ms | 8576 KB | Output is correct |
5 | Correct | 23 ms | 8448 KB | Output is correct |
6 | Correct | 44 ms | 8576 KB | Output is correct |
7 | Correct | 82 ms | 8448 KB | Output is correct |
8 | Correct | 188 ms | 8568 KB | Output is correct |
9 | Execution timed out | 2045 ms | 8448 KB | Time limit exceeded |
10 | Correct | 229 ms | 8568 KB | Output is correct |