| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 631198 | NintsiChkhaidze | One-Way Streets (CEOI17_oneway) | C++14 | 3043 ms | 15540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define s second
#define f first
#define pb push_back
using namespace std;
const int N = 100005;
vector <pair<int,int> > v[N];
int tin[N],low[N],a[N],b[N];
vector <int> open[N],close[N];
bool bridge[N],vis[N],F[N];
int f[N],o,c,cnt;
void dfs(int x,int par){
f[x] = 1;
tin[x] = low[x] = cnt++;
for (auto [to,id]: v[x]){
if (to == par) continue;
if (f[to]){
low[x] = min(low[x], tin[to]);
}else{
dfs(to,x);
low[x] = min(low[x], low[to]);
if (low[to] > tin[x])
bridge[id] = 1;
}
}
}
void DFS(int x){
vis[x] = 1;
for (int y: open[x]){
o++;
f[y]++;
if (f[y] == 0) o--,c--;
}
for (int y: close[x]){
c++;
f[y]--;
if (f[y] == 0) c--,o--;
}
for (auto [to,id]: v[x])
if (!vis[to] && !F[id]) DFS(to);
}
int main (){
ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL);
int n,m;
cin>>n>>m;
for (int i = 1; i <= m; i++){
cin>>a[i]>>b[i];
v[a[i]].pb({b[i],i});
v[b[i]].pb({a[i],i});
}
for (int i= 1; i <= n; i++)
if (!f[i]) dfs(i,i);
int k;
cin>>k;
for (int i = 1; i <= k; i++){
int x,y;
cin>>x>>y;
open[x].pb(i);
close[y].pb(i);
}
for (int i = 1; i <= m; i++){
if (bridge[i] == 0) cout<<'B';
else{
o = 0,c=0;
for (int j=1;j<=k;j++) f[j] = 0;
for (int j=1;j<=n;j++) vis[j] = 0;
F[i] = 1;
DFS(a[i]);
F[i] = 0;
if(o && !c) cout<<'R';
else if (!o && c) cout<<'L';
else cout<<'B';
}
}
}컴파일 시 표준 에러 (stderr) 메시지
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
