# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
84671 | 2018-11-16T13:09:21 Z | wjoao | Kronican (COCI16_kronican) | C++11 | 2 ms | 720 KB |
#include<bits/stdc++.h> #define maxn 25 #define maxn2 ((1<<21)+5) #define inf 0x3f3f3f3f #define pii pair<int, pair<int, int> > using namespace std; int n, k; priority_queue< pii, vector< pii >, greater< pii > > fp; struct UnionFind{ int pai[maxn]; UnionFind(){ memset(pai, -1, sizeof pai); } int find(int i){ if(pai[i] == -1) return i; pai[i] = find(pai[i]); return pai[i]; } bool uni(int x, int y){ if(find(x) == find(y)) return false; pai[find(y)] = find(x); return true; } } uf; int main(){ scanf(" %d %d", &n, &k); k = n-k; for(int i = 1; i <= n; i++) for(int j = 1; j <= n; j++ ){ int a; scanf("%d", &a); if( i != j ) fp.push(make_pair(a, make_pair(i, j))); } int sol = 0; while(k--){ int val = fp.top().first; int v = fp.top().second.first; int u = fp.top().second.second; fp.pop(); if(uf.find(v) == uf.find(u)){ k++; continue; } uf.uni(u, v); sol += val; } printf("%d\n", sol); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 508 KB | Output isn't correct |
3 | Incorrect | 2 ms | 592 KB | Output isn't correct |
4 | Incorrect | 2 ms | 592 KB | Output isn't correct |
5 | Incorrect | 2 ms | 592 KB | Output isn't correct |
6 | Incorrect | 2 ms | 592 KB | Output isn't correct |
7 | Incorrect | 2 ms | 720 KB | Output isn't correct |
8 | Incorrect | 2 ms | 720 KB | Output isn't correct |
9 | Incorrect | 2 ms | 720 KB | Output isn't correct |
10 | Incorrect | 2 ms | 720 KB | Output isn't correct |