이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define debug(x) cout << #x << ": " << x << endl;
#define all(x) x.begin(), x.end()
#define int long long
void g(vector<int> a) {
for (auto el : a) cout << el+1 << ", ";
cout << endl;
}
void solve() {
int n,m;cin>>n>>m;
vector<set<int>> adj(n, set<int>());
for (int i = 0; i < m; i++) {
int u,v;cin>>u>>v;u--;v--;
adj[u].insert(v);
adj[v].insert(u);
}
vector<vector<int>> ans;
for (int i = 0; i < n; i++) {
while (!adj[i].empty()) {
map<int, int> p;
p[i] = i;
queue<int> q;
q.push(i);
vector<int> hist1, hist2;
function<void(int, vector<int>*)> gethist = [&](int node, vector<int>* zz) {
zz->push_back(node);
if (p[node] == node) return;
gethist(p[node], zz);
};
while (!q.empty()) {
int node = q.front();q.pop();
for (auto children : adj[node]) {
if (children == p[node]) continue;
if (!p.count(children)) p[children] = -1;
if (p[children] != -1) {
// found the loop
gethist(children, &hist1);
gethist(node, &hist2);
goto Next;
}
p[children] = node;
q.push(children);
}
}
Next:;
// debug(i);
reverse(all(hist1));
for (auto el : hist2) hist1.push_back(el);
// found a loop but not this, still okay though
for (int i = 0; i+1 < hist1.size(); i++) {
adj[hist1[i]].erase(hist1[i+1]);
adj[hist1[i+1]].erase(hist1[i]);
}
hist1.pop_back();
ans.push_back(hist1);
}
}
for (auto v : ans) {
cout << v.size() << " ";
for (auto el : v) cout << el+1 << " ";
cout << endl;
}
}
int32_t main() {
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
postmen.cpp: In function 'void solve()':
postmen.cpp:59:27: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for (int i = 0; i+1 < hist1.size(); 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... |