結果

問題 No.1190 Points
ユーザー MisterMister
提出日時 2020-08-22 14:17:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 2,500 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 86,792 KB
実行使用メモリ 18,260 KB
最終ジャッジ日時 2024-10-15 08:31:12
合計ジャッジ時間 4,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 67 ms
13,984 KB
testcase_04 AC 61 ms
12,672 KB
testcase_05 AC 49 ms
11,904 KB
testcase_06 AC 89 ms
16,640 KB
testcase_07 AC 110 ms
17,824 KB
testcase_08 AC 102 ms
16,328 KB
testcase_09 AC 104 ms
16,260 KB
testcase_10 AC 103 ms
16,464 KB
testcase_11 AC 72 ms
13,056 KB
testcase_12 AC 103 ms
16,340 KB
testcase_13 AC 70 ms
12,520 KB
testcase_14 AC 22 ms
9,972 KB
testcase_15 AC 132 ms
17,900 KB
testcase_16 AC 12 ms
6,820 KB
testcase_17 AC 111 ms
16,824 KB
testcase_18 AC 55 ms
11,008 KB
testcase_19 AC 16 ms
11,000 KB
testcase_20 AC 66 ms
12,288 KB
testcase_21 AC 27 ms
9,088 KB
testcase_22 AC 37 ms
13,200 KB
testcase_23 AC 138 ms
18,260 KB
testcase_24 AC 142 ms
18,192 KB
testcase_25 AC 99 ms
17,928 KB
testcase_26 AC 82 ms
17,616 KB
testcase_27 AC 100 ms
17,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>

template <class Cost = int>
struct Edge {
    int src, dst;
    Cost cost;
    Edge(int src = -1, int dst = -1, Cost cost = 1)
        : src(src), dst(dst), cost(cost){};

    bool operator<(const Edge<Cost>& e) const { return this->cost < e.cost; }
    bool operator>(const Edge<Cost>& e) const { return this->cost > e.cost; }
};

template <class Cost = int>
struct Graph {
    std::vector<std::vector<Edge<Cost>>> graph;

    Graph(int n = 0) : graph(n) {}

    void span(bool direct, int src, int dst, Cost cost = 1) {
        graph[src].emplace_back(src, dst, cost);
        if (!direct) graph[dst].emplace_back(dst, src, cost);
    }

    int size() const { return graph.size(); }
    void clear() { graph.clear(); }
    void resize(int n) { graph.resize(n); }

    std::vector<Edge<Cost>>& operator[](int v) { return graph[v]; }
    std::vector<Edge<Cost>> operator[](int v) const { return graph[v]; }
};

template <class Cost>
std::vector<int> bfs(const Graph<Cost>& graph, int s) {
    std::vector<Cost> dist(graph.size(), -1);
    dist[s] = 0;
    std::queue<int> que;
    que.push(s);

    while (!que.empty()) {
        int v = que.front();
        que.pop();

        for (const auto& e : graph[v]) {
            if (dist[e.dst] != -1) continue;
            dist[e.dst] = dist[v] + e.cost;
            que.push(e.dst);
        }
    }

    return dist;
}

void solve() {
    int n, m, k, s, g;
    std::cin >> n >> m >> k >> s >> g;
    --s, --g;

    Graph<> graph(n * 2);
    auto enc = [&](int v, int t) { return v + t * n; };

    while (m--) {
        int u, v;
        std::cin >> u >> v;
        --u, --v;

        for (int t = 0; t < 2; ++t) {
            graph.span(false, enc(u, t), enc(v, 1 - t));
        }
    }

    auto sdist = bfs(graph, enc(s, 0));
    auto gdist = bfs(graph, enc(g, 0));

    std::vector<int> ans;
    for (int v = 0; v < n; ++v) {
        for (int t = 0; t < 2; ++t) {
            int nt = (t + k) % 2;
            if (sdist[enc(v, t)] != -1 && gdist[enc(v, nt)] != -1 &&
                sdist[enc(v, t)] + gdist[enc(v, nt)] <= k) {
                ans.push_back(v);
                break;
            }
        }
    }

    if (ans.empty()) {
        std::cout << "-1\n";
        return;
    }

    std::cout << ans.size() << "\n";
    for (auto v : ans) std::cout << v + 1 << "\n";
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0