# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
832549 | EntityPlantt | 어르신 집배원 (BOI14_postmen) | C++14 | 14 ms | 23772 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <set>
using namespace std;
set <int> graph[500000], togo;
int n, m, a, b, startNode, nowNode;
set<int>::iterator nextNode;
int main() {
scanf("%d%d", &n, &m);
while (m--) {
scanf("%d%d", &a, &b);
graph[--a].insert(--b);
graph[b].insert(a);
}
for (int i = 0; i < n; i++) togo.insert(i);
while (!togo.empty()) {
startNode = nowNode = *prev(togo.end());
do {
printf("%d ", nowNode + 1);
nextNode = prev(graph[nowNode].end());
graph[*nextNode].erase(nowNode);
graph[nowNode].erase(nextNode);
if (graph[nowNode].empty()) togo.erase(nowNode);
nowNode = *nextNode;
} while (startNode != nowNode);
if (graph[startNode].empty()) togo.erase(prev(togo.end()));
printf("\n");
}
return 0;
}
컴파일 시 표준 에러 (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... |