이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define endl '\n'
#define N 100000
#define pi acos(-1)
#define tora acos(-1)/180
#define tode 180/acos(-1)
#define pque priority_queue
typedef pair < int, int > ii;
typedef vector < int > vi;
typedef vector < vi > vii;
int mod = 1000000007 ;
int n, m, a, b, cak;
bool check[500009], edge[500009];
vector<ii> v[500009];
stack<int> st;
void dfs(int u)
{
//cout << u << endl;
if(check[u] == 1)
{
if(cak == 1)
cout << endl;
cout << u;
while(!st.empty() && st.top() != u)
{
int id = st.top();
cout << ' ' << id;
check[id] = 0;
st.pop();
if(id == u)
break;
}
cak = 1;
}
else
{
check[u] = 1;
st.push(u);
}
for(int i = 0; i < (int)v[u].size(); i++)
if(edge[v[u][i].se] == 0 && check[u] == 1)
{
edge[v[u][i].se] = 1;
dfs(v[u][i].fi);
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin >> n >> m;
for(int i = 1; i <= m; i++)
{
cin >> a >> b;
v[a].pb(mp(b, i));
v[b].pb(mp(a, i));
}
for(int i = 1; i <= n; i++)
dfs(i);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |