Submission #436990

# Submission time Handle Problem Language Result Execution time Memory
436990 2021-06-25T13:56:46 Z mostafa Planinarenje (COCI18_planinarenje) C++14
0 / 160
4 ms 952 KB
// in the name of GOD++
#include <bits/stdc++.h>

using namespace std;
#define ll long long
#define pii pair<int,int>
#define mpp make_pair
#define pb push_back
#define F first
#define S second
//#pragma GCC optimize("O2")

const int MX=5e3+10;
vector<int> adj[MX];
bool match1[MX];
int match2[MX];
bool mrk[MX];

bool dfs(int v)
{
    mrk[v]=1;
    if(!adj[v].size()) return 0;
    for(int u:adj[v]){
        if(!match2[u]){
            match1[v]=1;
            match2[u]=v;
            return 1;
        }
    }
    for(int u:adj[v]){
        if(!mrk[match2[u]]&&dfs(match2[u])){
            match1[v]=1;
            match2[u]=v;
            return 1;
        }
    }
}

bool ans[MX];
void solve(int v)
{
    mrk[v]=1;
    ans[v]=1;
    for(int u:adj[v]){
        if(!mrk[match2[u]]) solve(match2[u]);
    }
}

int main()
{
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int n,m;
    cin>>n>>m;
    for(int i=0;i<m;i++){
        int v,u;
        cin>>v>>u;
        adj[v].pb(u);
    }
    int fnd=1;
    while(fnd){
        fnd=0;
        fill(mrk,mrk+n+2,0);
        for(int i=1;i<=n;i++){
            if((!mrk[i])&&(!match1[i])&&dfs(i)){
                fnd=1;
            }
        }
    }
    fill(mrk,mrk+n+2,0);
    for(int i=1;i<=n;i++){
        if(match1[i]==0){
            fill(mrk,mrk+n+2,0);
            solve(i);
        }
    }
    for(int i=1;i<=n;i++){
        if(ans[i]) cout<<"Mirko"<<endl;
        else cout<<"Slavko"<<endl;
    }
    return 0;
}

Compilation message

planinarenje.cpp: In function 'bool dfs(int)':
planinarenje.cpp:37:1: warning: control reaches end of non-void function [-Wreturn-type]
   37 | }
      | ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 332 KB Output is correct
2 Runtime error 1 ms 684 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 716 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 588 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 716 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 952 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 716 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 716 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 716 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 844 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 844 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -