이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct query {
int a;
int b;
char c;
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, m, v;
cin >> n >> m >> v;
vector<int> types(m, -1);
vector<query> queries(v);
for (query &q : queries) {
cin >> q.a >> q.c >> q.b;
q.a--;
q.b--;
}
char changed;
do {
changed = false;
for (const query &q : queries) {
switch (q.c) {
case '<':
if (types[q.b] == -1 or types[q.a] == -1) {
types[q.b] = 2;
types[q.a] = 1;
changed = true;
}
break;
case '=':
if (types[q.b] != -1 and types[q.a] == -1) {
types[q.a] = types[q.b];
changed = true;
} else if (types[q.a] != -1 and types[q.b] == -1) {
types[q.b] = types[q.a];
changed = true;
}
break;
default:
break;
}
}
} while (changed);
for (const int &type : types) {
if (type == -1) {
cout << "?\n";
continue;
}
cout << 'K' << type << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |