# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
106644 | ArshiaDadras | Planinarenje (COCI18_planinarenje) | C++14 | 8 ms | 1024 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/* In the name of Allah */
#include<bits/stdc++.h>
using namespace std;
const int N = 1e4 + 5;
int n, m, match[N];
vector<int> adj[N];
bitset<N> mark;
bool dfs1(int u) {
mark[u] = true;
for (auto v: adj[u])
if (!~match[v] || (!mark[match[v]] && dfs1(match[v]))) {
match[match[v] = u] = v;
return true;
}
return false;
}
void dfs2(int u) {
mark[u] = true;
for (auto v: adj[u])
if (~match[v] && !mark[match[v]])
dfs2(match[v]);
}
int main() {
scanf("%d%d", &n, &m);
for (int i = 0; i < m; i++) {
int u, v;
scanf("%d%d", &u, &v);
adj[--u].push_back(v += n - 1), adj[v].push_back(u);
}
memset(match, -1, sizeof match);
for (int ok = 1; ok; mark.reset())
for (int u = ok = 0; u < n; u++)
if (!~match[u] && !mark[u])
ok |= dfs1(u);
for (int u = 0; u < n; u++)
if (!~match[u] && !mark[u])
dfs2(u);
for (int u = 0; u < n; u++)
printf(mark[u]? "Mirko\n": "Slavko\n");
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |