結果

問題 No.1190 Points
ユーザー AndrewKAndrewK
提出日時 2020-08-22 11:22:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,398 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 180,096 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-10-15 06:55:22
合計ジャッジ時間 7,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,880 KB
testcase_01 AC 12 ms
27,008 KB
testcase_02 AC 12 ms
26,880 KB
testcase_03 AC 251 ms
37,760 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 289 ms
40,704 KB
testcase_07 AC 391 ms
41,728 KB
testcase_08 AC 335 ms
42,240 KB
testcase_09 RE -
testcase_10 AC 344 ms
42,112 KB
testcase_11 RE -
testcase_12 AC 328 ms
41,984 KB
testcase_13 RE -
testcase_14 AC 72 ms
31,744 KB
testcase_15 AC 431 ms
41,728 KB
testcase_16 AC 49 ms
29,440 KB
testcase_17 AC 386 ms
40,576 KB
testcase_18 AC 234 ms
36,992 KB
testcase_19 AC 51 ms
30,848 KB
testcase_20 AC 276 ms
37,596 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 460 ms
42,112 KB
testcase_24 AC 441 ms
42,112 KB
testcase_25 AC 308 ms
41,728 KB
testcase_26 AC 283 ms
41,472 KB
testcase_27 AC 302 ms
41,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int N, M, P, S, G, u[100001], v[100001];
int kyo_s[100001][2], kyo_g[100001][2];
constexpr int inf = 1000000000;
set<pair<int, int>> st;
queue<pair<int, int>> q;
vector<int> edge[1000001];
vector<int> ans;
int main() {
    cin >> N >> M >> P;
    cin >> S >> G;
    assert(2 <= N && N <= 100000);
    assert(1 <= M && M <= min(N * (N - 1) / 2, 100000));
    assert(1 <= P && P <= 1000000000);
    assert(S != G);
    for (int i = 1; i <= M; i++) {
        cin >> u[i] >> v[i];
        assert(u[i] != v[i]);
        assert(st.count(pair<int, int>(u[i], v[i])) == 0);
        st.insert(pair<int, int>(u[i], v[i]));
        st.insert(pair<int, int>(v[i], u[i]));
        edge[u[i]].push_back(v[i]);
        edge[v[i]].push_back(u[i]);
    }
    for (int i = 1; i <= N; i++) {
        kyo_s[i][0] = inf;
        kyo_s[i][1] = inf;
        kyo_g[i][0] = inf;
        kyo_g[i][1] = inf;
    }
    kyo_s[S][0] = 0;
    q.push(make_pair(0, S));
    while (q.size()) {
        int cnt = q.front().first;
        int x = q.front().second;
        q.pop();
        if (kyo_s[x][cnt % 2] < cnt)
            continue;

        cnt++;

        for (auto &i : edge[x]) {
            if (kyo_s[i][cnt % 2] > cnt) {
                kyo_s[i][cnt % 2] = cnt;
                q.push(make_pair(cnt, i));
            }
        }
    }
    kyo_g[G][0] = 0;
    q.push(make_pair(0, G));
    while (q.size()) {
        int cnt = q.front().first;
        int x = q.front().second;
        q.pop();
        if (kyo_g[x][cnt % 2] < cnt)
            continue;

        cnt++;

        for (auto &i : edge[x]) {
            if (kyo_g[i][cnt % 2] > cnt) {
                kyo_g[i][cnt % 2] = cnt;
                q.push(make_pair(cnt, i));
            }
        }
    }
    for (int i = 1; i <= N; i++) {
        if (P % 2) {
            int odd = min(kyo_s[i][0] + kyo_g[i][1], kyo_s[i][1] + kyo_g[i][0]);
            if (odd <= P) {
                ans.push_back(i);
            }
        } else {
            int even = min(kyo_s[i][0] + kyo_g[i][0], kyo_s[i][1] + kyo_g[i][1]);
            if (even <= P) {
                ans.push_back(i);
            }
        }
    }
    if (ans.size() == 0) {
        cout << -1 << endl;
        return 0;
    }
    cout << ans.size() << endl;
    for (int i = 0; i < ans.size(); i++) {
        cout << ans[i] << endl;
    }
    return 0;
}
0