Submission #637211

#TimeUsernameProblemLanguageResultExecution timeMemory
637211MinaRagy06KOVANICE (COI15_kovanice)C++17
0 / 100
2077 ms62480 KiB
#include <bits/stdc++.h> using namespace std; #define lesgooo ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0) #define endl '\n' #define int long long const int N = 3e5+5; vector<int> adj[N], comp[N]; int idx[N], vis[N], cur, indeg[N], val[N]; void dfs(int i) { comp[cur].push_back(i), idx[i] = cur, vis[i] = 1; for (auto nxt : adj[i]) if (!vis[nxt]) dfs(nxt); } int depth(int i) { int ret = 1; for (auto nxt : adj[i]) ret = max(ret, 1+depth(nxt)); return ret; } void assign(int i, int dep) { assert(!vis[i]); val[i] = dep, vis[i] = 1; for (auto nxt : adj[i]) assign(nxt, dep+1); } signed main() { lesgooo; int n, m, v; cin >> n >> m >> v; pair<pair<int, char>, int> a[v]; for (int i = 0; i < v; i++) { cin >> a[i].first.first >> a[i].first.second >> a[i].second; a[i].first.first--, a[i].second--; if (a[i].first.second == '=') adj[a[i].first.first].push_back(a[i].second), adj[a[i].second].push_back(a[i].first.first); } for (int i = 0; i < m; i++) if (!vis[i]) dfs(i), cur++; for (int i = 0; i < m; i++) adj[i].clear(), val[i] = -1, vis[i] = 0; for (int i = 0; i < v; i++) if (a[i].first.second != '=') adj[idx[a[i].first.first]].push_back(idx[a[i].second]), indeg[idx[a[i].second]] = 1; for (int i = 0; i < cur; i++) if (!indeg[i] && depth(i) == n) assign(i, 1); for (int i = 0; i < m; i++) cout << (val[idx[i]] == -1? "?" : "K"+to_string(val[idx[i]])) << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...