# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1174778 | nuutsnoynton | Kronican (COCI16_kronican) | C++20 | 64 ms | 328 KiB |
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair < ll, ll >;
ll D[22][22] = {0}, d[22], ataman[22];
ll Get(ll x) {
if (x == ataman[x]) return x;
return ataman[x] = Get(ataman[x]);
}
int main() {
ll n, m, r, x, s,node, y, k, i,sum, j, ans, t;
cin >> n >> k;
vector < pair < ll , pair < ll, ll > > > q;
for (i = 1; i <= n; i ++) {
for (j = 1; j <= n; j ++) {
cin >> D[i][j];
q.push_back(make_pair(D[i][j], make_pair(i, j)));
}
}
sort(q.begin(), q.end());
vector <ll > v;
for (i = 1; i <= k; i ++) {
v.push_back(i);
}
ans = 1e17;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |