# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
777630 | MasterTaster | 어르신 집배원 (BOI14_postmen) | C++14 | 465 ms | 44812 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
#define pb push_back
#define MAXN 500010
using namespace std;
int n, m; //deg[MAXN]
vector<int> put, tren;
vector<pii> g[MAXN];
bool bio[MAXN], bila[MAXN];
int main(){
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n>>m;
for (int i=0; i<m; i++)
{
int u, v; cin>>u>>v;
g[u].pb({v, i});
g[v].pb({u, i});
//deg[u]++;
//deg[v]++;
}
//cout<<"ee"<<endl;
stack<int> st;
st.push(1);
while (!st.empty())
{
int u=st.top();
pii nesto=g[u].back();
while (g[u].size() && bila[nesto.yy])
{
g[u].pop_back();
nesto=g[u].back();
}
if (!g[u].size())
{
put.pb(u);
st.pop();
continue;
}
nesto=g[u].back();
bila[nesto.yy]=true;
g[u].pop_back();
//deg[u]--;
//deg[v]--;
int v=nesto.xx;
st.push(v);
}
//for (auto x:put) cout<<x<<" ";
//cout<<endl;
for (int i=0; i<put.size(); i++)
{
int u=put[i];
st.push(u);
if (bio[u])
{
tren.clear();
int nes=0;
while (!nes || st.top()!=u)
{
nes++;
bio[st.top()]=false;
tren.pb(st.top());
st.pop();
}
for (auto x:tren) cout<<x<<" ";
cout<<endl;
}
bio[u]=true;
}
cout<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |