#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;
memset(vis, 0, sizeof vis);
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] && !vis[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;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
16908 KB |
Output is correct |
2 |
Correct |
10 ms |
16852 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
97 ms |
32248 KB |
Output is correct |
2 |
Correct |
86 ms |
32212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2079 ms |
20428 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2092 ms |
44040 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |