# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
62882 | IvanC | 어르신 집배원 (BOI14_postmen) | C++17 | 534 ms | 76756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define gc getchar_unlocked
inline void getint(int &x){
register int c = gc();
x = 0;
for(;(c<48 || c>57);c = gc());
for(;c>47 && c<58;c = gc()) {x = (x<<1) + (x<<3) + c - 48;}
}
inline void print(int n){
char buf[11];
buf[10] = ' ';
int i = 9;
while (n)
{
buf[i--] = n % 10 + '0';
n /= 10;
}
while (buf[i] != ' ')
putchar_unlocked(buf[++i]);
}
using namespace std;
typedef vector<int> vi;
const int MAXN = 5*1e5 + 10;
int N,M,e1[MAXN],e2[MAXN],e3[MAXN],marcado[MAXN],ptr[MAXN];
vi grafo[MAXN],pilha;
vector<vi> resposta;
int dfs(int v){
//printf("DFS %d\n",v);
marcado[v] = 1;
for(;ptr[v] < grafo[v].size();ptr[v]++){
int idx = grafo[v][ptr[v]];
if(e3[idx] == 1) continue;
e3[idx] = 1;
int u = (e1[idx] != v) ? (e1[idx]) : (e2[idx]);
if(marcado[u]){
marcado[v] = 0;
pilha.push_back(v);
return u;
}
int ret = dfs(u);
if(ret == v){
pilha.push_back(v);
resposta.push_back(pilha);
pilha.clear();
}
else{
marcado[v] = 0;
pilha.push_back(v);
return ret;
}
}
marcado[v] = 0;
pilha.clear();
return -1;
}
int main(){
scanf("%d %d",&N,&M);
for(int i = 1;i<=M;i++){
getint(e1[i]);
getint(e2[i]);
grafo[e1[i]].push_back(i);
grafo[e2[i]].push_back(i);
}
for(int i = 1;i<=N;i++){
dfs(i);
}
for(int i = 0;i<resposta.size();i++){
for(int j : resposta[i]) print(j);
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... |