# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
249150 | 2020-07-14T12:32:50 Z | vanic | KOVANICE (COI15_kovanice) | C++14 | 2000 ms | 1024 KB |
#include <iostream> #include <cstdio> #include <math.h> #include <algorithm> #include <string.h> #include <vector> #include <set> #include <stack> #include <map> #include <queue> #include <array> #include <bitset> using namespace std; const int maxn=1005; vector < int > ms[maxn]; int val[maxn]; int sol[maxn]; struct union_find{ vector < int > komp[maxn]; int parent[maxn]; union_find(){ for(int i=0; i<maxn; i++){ parent[i]=i; komp[i].push_back(i); } } void update(int x, int y){ x=parent[x]; y=parent[y]; if(komp[x].size()>komp[y].size()){ swap(x, y); } for(int i=0; i<komp[x].size(); i++){ komp[y].push_back(komp[x][i]); parent[komp[x][i]]=y; } komp[x].clear(); } bool query(int x, int y){ return parent[x]==parent[y]; } }; union_find U; int dfs(int x){ x=U.parent[x]; if(val[x]){ return val[x]; } for(int i=0; i<U.komp[x].size(); i++){ for(int j=0; j<ms[U.komp[x][i]].size(); j++){ val[x]=max(val[x], dfs(ms[U.komp[x][i]][j])); } } val[x]++; return val[x]; } void rijesi(int x){ if(sol[x]){ return; } x=U.parent[x]; sol[x]=val[x]; for(int i=0; i<U.komp[x].size(); i++){ for(int j=0; j<ms[U.komp[x][i]].size(); j++){ if(val[U.parent[ms[U.komp[x][i]][j]]]==val[x]-1){ rijesi(ms[U.komp[x][i]][j]); } } } } int main(){ ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, m, v; cin >> n >> m >> v; char c; int a, b; string s; int pos; for(int i=0; i<v; i++){ cin >> s; a=0; b=0; pos=0; while(s[pos]>='0' && s[pos]<='9'){ a*=10; a+=s[pos]-'0'; pos++; } c=s[pos]; pos++; while(pos<s.size()){ b*=10; b+=s[pos]-'0'; pos++; } a--; b--; if(c=='<'){ ms[b].push_back(a); } else{ if(!U.query(a, b)){ U.update(a, b); } } } for(int i=0; i<m; i++){ if(!val[U.parent[i]]){ dfs(U.parent[i]); } } for(int i=0; i<m; i++){ if(val[i]==n){ rijesi(i); } } for(int i=0; i<m; i++){ if(sol[U.parent[i]]){ cout << "K" << sol[U.parent[i]] << '\n'; } else{ cout << "?" << '\n'; } } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 1 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2077 ms | 1024 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |