# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
436987 | 2021-06-25T13:46:38 Z | mostafa | Planinarenje (COCI18_planinarenje) | C++14 | 6 ms | 3200 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=5e4+10; vector<int> adj[MX]; int match1[MX]; int match2[MX]; bool mrk[MX]; bool dfs(int v) { mrk[v]=1; for(int u:adj[v]){ if(!match2[u]){ match1[v]=u; match2[u]=v; return 1; } } for(int u:adj[v]){ if(!mrk[match2[u]]&&dfs(match2[u])){ match1[v]=u; 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]) solve(i); } for(int i=1;i<=n;i++){ if(ans[i]) cout<<"Mirko"<<endl; else cout<<"Slavko"<<endl; } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 1484 KB | Output is correct |
2 | Runtime error | 4 ms | 2764 KB | Execution killed with signal 11 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 2764 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 2764 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 2796 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 3200 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 2892 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 4 ms | 2892 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 2892 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 6 ms | 2912 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 4 ms | 3020 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |