Submission #1241818


Source Code Expand

// Copyright (C) 2017 __debug.

// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; version 3

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program; If not, see <http://www.gnu.org/licenses/>.


#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/priority_queue.hpp>

#define x first
#define y second
#define MP std::make_pair
#define SZ(x) ((int)(x).size())
#define ALL(x) (x).begin(), (x).end()
#define DEBUG(...) fprintf(stderr, __VA_ARGS__)
#ifdef __linux__
#define getchar getchar_unlocked
#define putchar putchar_unlocked
#endif

using std::pair;
using std::vector;
using std::string;

typedef long long LL;
typedef pair<int, int> Pii;

const int oo = 0x3f3f3f3f;

template<typename T> inline bool chkmax(T &a, T b) { return a < b ? a = b, true : false; }
template<typename T> inline bool chkmin(T &a, T b) { return b < a ? a = b, true : false; }
string procStatus()
{
    std::ifstream t("/proc/self/status");
    return string(std::istreambuf_iterator<char>(t), std::istreambuf_iterator<char>());
}
template<typename T> T read(T &x)
{
    int f = 1;
    char ch = getchar();
    for (; !isdigit(ch); ch = getchar())
        f = (ch == '-' ? -1 : 1);
    for (x = 0; isdigit(ch); ch = getchar())
        x = 10 * x + ch - '0';
    return x *= f;
}
template<typename T> void write(T x)
{
    if (x == 0) {
        putchar('0');
        return;
    }
    if (x < 0) {
        putchar('-');
        x = -x;
    }
    static char s[20];
    int top = 0;
    for (; x; x /= 10)
        s[++top] = x % 10 + '0';
    while (top)
        putchar(s[top--]);
}
// EOT

const int MAXN = 1e5 + 5, MAXM = 2e5 + 5;

struct Edge {
    int v, next;
    Edge() { }
    Edge(int v_, int next_): v(v_), next(next_) { }
};

int N, M;
int tote, head[MAXN];
Edge edge[MAXM];

inline void addEdge(int u, int v)
{
    edge[++tote] = Edge(v, head[u]);
    head[u] = tote;
}

void input()
{
    read(N); read(M);
    for (int i = 1; i <= M; ++i) {
        int u, v;
        read(u); read(v);
        addEdge(u, v);
        addEdge(v, u);
    }
}

int dfsclock, dfn[MAXN], low[MAXN];
int iscut[MAXN];

void dfs0(int u, int f)
{
    dfn[u] = low[u] = ++dfsclock;
    int cnt = 0;
    for (int i = head[u]; i; i = edge[i].next) {
        int v = edge[i].v;
        if (v == f) continue;
        if (!dfn[v]) {
            ++cnt;
            dfs0(v, u);
            chkmin(low[u], low[v]);
            if (low[v] > dfn[u])
                iscut[u] = true;
        } else if (dfn[v] < dfn[u])
            chkmin(low[u], dfn[v]);
    }
    if (!f && cnt == 1)
        iscut[u] = false;
}

bool vis[MAXN];
vector<int> ans;

void dfs1(int u)
{
    vis[u] = true;
    ans.push_back(u);
    for (int i = head[u]; i; i = edge[i].next) {
        int v = edge[i].v;
        if (!vis[v]) {
            dfs1(v);
            break;
        }
    }
}

void solve()
{
    dfs0(1, 0);
    for (int i = 1; i <= N; ++i) {
        if (!iscut[i]) {
            dfs1(i);
            break;
        }
    }
    assert(SZ(ans) > 1);

    printf("%d\n", SZ(ans));
    for (int i = 0; i < SZ(ans); ++i) {
        printf("%d ", ans[i]);
    }
    puts("");
}

int main()
{
#ifdef __DEBUG
    freopen("B.in", "r", stdin);
    freopen("B.out", "w", stdout);
#endif

    input();
    solve();

    return 0;
}

// 男儿何不带吴钩,收取关山五十州。
//     -- 李贺《南园十三首·其五》

Submission Info

Submission Time
Task B - Hamiltonish Path
User debug18
Language C++14 (GCC 5.4.1)
Score 0
Code Size 3983 Byte
Status WA
Exec Time 16 ms
Memory 8832 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 500
Status
AC × 3
AC × 13
WA × 6
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, sample_01.txt, sample_02.txt, sample_03.txt, subtask_1_01.txt, subtask_1_02.txt, subtask_1_03.txt, subtask_1_04.txt, subtask_1_05.txt, subtask_1_06.txt, subtask_1_07.txt, subtask_1_08.txt, subtask_1_09.txt, subtask_1_10.txt, subtask_1_11.txt, subtask_1_12.txt, subtask_1_13.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
sample_03.txt AC 1 ms 256 KB
subtask_1_01.txt WA 12 ms 4480 KB
subtask_1_02.txt WA 3 ms 1024 KB
subtask_1_03.txt WA 11 ms 4864 KB
subtask_1_04.txt WA 12 ms 4480 KB
subtask_1_05.txt WA 12 ms 4608 KB
subtask_1_06.txt WA 12 ms 4608 KB
subtask_1_07.txt AC 10 ms 3328 KB
subtask_1_08.txt AC 10 ms 3328 KB
subtask_1_09.txt AC 16 ms 8832 KB
subtask_1_10.txt AC 4 ms 1024 KB
subtask_1_11.txt AC 5 ms 1152 KB
subtask_1_12.txt AC 1 ms 256 KB
subtask_1_13.txt AC 1 ms 256 KB