結果

問題 No.1190 Points
ユーザー AndrewKAndrewK
提出日時 2020-08-22 11:32:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 2,472 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 179,820 KB
実行使用メモリ 42,112 KB
最終ジャッジ日時 2024-10-15 06:56:15
合計ジャッジ時間 8,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,880 KB
testcase_01 AC 12 ms
26,752 KB
testcase_02 AC 12 ms
26,880 KB
testcase_03 AC 203 ms
37,844 KB
testcase_04 AC 165 ms
36,736 KB
testcase_05 AC 194 ms
35,584 KB
testcase_06 AC 236 ms
40,692 KB
testcase_07 AC 307 ms
41,692 KB
testcase_08 AC 317 ms
42,112 KB
testcase_09 AC 315 ms
41,728 KB
testcase_10 AC 321 ms
42,072 KB
testcase_11 AC 236 ms
38,144 KB
testcase_12 AC 315 ms
41,948 KB
testcase_13 AC 227 ms
36,764 KB
testcase_14 AC 58 ms
31,616 KB
testcase_15 AC 347 ms
41,728 KB
testcase_16 AC 39 ms
29,568 KB
testcase_17 AC 317 ms
40,448 KB
testcase_18 AC 187 ms
36,992 KB
testcase_19 AC 38 ms
30,848 KB
testcase_20 AC 221 ms
37,504 KB
testcase_21 AC 80 ms
32,384 KB
testcase_22 AC 107 ms
35,200 KB
testcase_23 AC 382 ms
42,112 KB
testcase_24 AC 367 ms
41,984 KB
testcase_25 AC 253 ms
41,728 KB
testcase_26 AC 237 ms
41,344 KB
testcase_27 AC 237 ms
41,652 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);
    long long lbig = min((long long)N * ((long long)N - 1ll) / 2ll, 100000ll);
    int big = lbig;
    assert(1 <= M && M <= big);
    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