#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 = 5e5+5;
vector<int> adj[N], adj2[N], comp[N], path;
int idx[N], vis[N], cur, indeg[N], val[N], ans[N], dp[N], dp2[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)
{
if (~dp[i]) return dp[i];
dp[i] = 1, path.push_back(i);
for (auto nxt : adj[i]) dp[i] = max(dp[i], 1+depth(nxt));
return dp[i];
}
int assign(int i)
{
if (~dp2[i]) return dp2[i];
dp2[i] = 1;
for (auto nxt : adj2[i]) dp2[i] = max(dp2[i], 1+assign(nxt));
return dp2[i];
}
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;
for (int i = 0; i < v; i++) if (a[i].first.second != '=') adj[idx[a[i].first.first]].push_back(idx[a[i].second]), adj2[idx[a[i].second]].push_back(idx[a[i].first.first]), indeg[idx[a[i].second]] = 1;
memset(dp, -1, sizeof dp), memset(dp2, -1, sizeof dp2);
for (int i = 0; i < cur; i++)
{
path.clear();
if (!indeg[i] && depth(i) == n)
{
for (auto j : path) assign(j);
for (auto j : path) if (dp2[j] + dp[j]-1 < n) dp2[j] = -1;
}
}
for (int i = 0; i < m; i++) ans[i] = dp2[idx[i]];
for (int i = 0; i < m; i++) cout << (ans[i] == -1 || ans[i] == 1e18? "?" : "K"+to_string(ans[i])) << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
43476 KB |
Output is correct |
2 |
Correct |
23 ms |
43564 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
115 ms |
63252 KB |
Output is correct |
2 |
Correct |
120 ms |
63376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
39 ms |
48040 KB |
Output is correct |
2 |
Correct |
39 ms |
48380 KB |
Output is correct |
3 |
Correct |
39 ms |
48212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
271 ms |
80924 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |