# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
777601 | MasterTaster | 어르신 집배원 (BOI14_postmen) | C++14 | 637 ms | 83908 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 500003
using namespace std;
int n, m; //deg[MAXN]
vector<int> put, tren;
set<int> g[MAXN];
bool bio[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].insert(v);
g[v].insert(u);
//deg[u]++;
//deg[v]++;
}
//cout<<"ee"<<endl;
stack<int> st;
st.push(1);
while (!st.empty())
{
int u=st.top();
if (g[u].empty())
{
put.pb(u);
st.pop();
continue;
}
int v=(*g[u].begin());
g[u].erase(v);
g[v].erase(u);
//deg[u]--;
//deg[v]--;
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... |