이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define pb push_back
#define FIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
using namespace std;
typedef pair <ll, ll> pii;
const int N = 1e5 + 7;
int n, m, q, tim;
int bio[N], st[N], ba[N], res[N], qu[N];
vector <pii> adj[N], gadj[N];
void dfs(int x, int p = 0, int d = 0) {
bio[x] = 1;
st[x] = ++tim;
ba[x] = st[x];
for (auto y : adj[x]) {
if (y.S == d) continue;
if (bio[y.F]) {
ba[x] = min(ba[x], st[y.F]);
res[abs(y.S)] = 2;
// cout << x << " " << abs(y.S) << "\n";
continue;
}
dfs(y.F, x, y.S);
ba[x] = min(ba[x], ba[y.F]);
gadj[x].pb(y);
}
}
void dfs2(int x, int p = 0, int d = 0) {
for (auto it : gadj[x]) {
// cout << x << " " << it.F << " " << abs(it.S) << "\n";
dfs2(it.F, x, it.S);
qu[x] += qu[it.F];
}
if (x == 1) return;
if (ba[x] < st[x]) {
res[abs(d)] = 2;
return;
}
if (qu[x] < 0) res[abs(d)] = (x > p) ^ (d > 0);
else if (qu[x] > 0) res[abs(d)] = (x < p) ^ (d > 0);
else res[abs(d)] = 2;
}
int main () {
FIO;
cin >> n >> m;
for (int i = 1; i <= m; i++) {
int x, y; cin >> x >> y;
int o = 1 - 2*(x < y);
adj[x].pb({y, i*o});
adj[y].pb({x, i*o});
}
cin >> q;
while (q--) {
int x, y; cin >> x >> y;
qu[x]++;
qu[y]--;
}
dfs(1);
dfs2(1);
string s = "LRB";
for (int i = 1; i <= m; i++) cout << s[res[i]];
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... |