結果

問題 No.1190 Points
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-01-24 02:53:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 2,145 bytes
コンパイル時間 1,538 ms
コンパイル使用メモリ 122,304 KB
実行使用メモリ 13,100 KB
最終ジャッジ日時 2024-06-25 19:32:03
合計ジャッジ時間 7,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 107 ms
10,112 KB
testcase_04 AC 68 ms
9,088 KB
testcase_05 AC 120 ms
8,832 KB
testcase_06 AC 86 ms
11,392 KB
testcase_07 AC 165 ms
12,288 KB
testcase_08 AC 226 ms
12,988 KB
testcase_09 AC 206 ms
12,172 KB
testcase_10 AC 214 ms
13,088 KB
testcase_11 AC 147 ms
9,728 KB
testcase_12 AC 196 ms
12,752 KB
testcase_13 AC 125 ms
8,704 KB
testcase_14 AC 23 ms
8,064 KB
testcase_15 AC 230 ms
12,936 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 184 ms
12,376 KB
testcase_18 AC 85 ms
6,400 KB
testcase_19 AC 17 ms
9,216 KB
testcase_20 AC 113 ms
7,936 KB
testcase_21 AC 32 ms
7,296 KB
testcase_22 AC 41 ms
10,112 KB
testcase_23 AC 208 ms
13,084 KB
testcase_24 AC 210 ms
13,100 KB
testcase_25 AC 97 ms
12,032 KB
testcase_26 AC 79 ms
11,520 KB
testcase_27 AC 92 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

int main(){

    long long N, M, P, S, G, A, B, from, to, alt, d;
    cin >> N >> M >> P >> S >> G;
    S--; G--;
    queue<pair<long long, long long>> que;
    vector<vector<int>> E(N);
    vector<long long> ds0(N, 1e9), ds1(N, 1e9);
    vector<long long> dg0(N, 1e9), dg1(N, 1e9);
    vector<long long> ans;

    for (int i=0; i < M; i++){
        cin >> A >> B;
        A--; B--;
        E[A].push_back(B);
        E[B].push_back(A);
    }

    ds0[S] = 0;
    que.push({S, 0});

    while(!que.empty()){
        tie(from, d) = que.front();
        que.pop();
        for (auto to : E[from]){
            alt = d+1;
            if (alt % 2 == 0 && ds0[to] == 1e9){
                ds0[to] = alt;
                que.push({to, alt});
            }
            else if (alt % 2 == 1 && ds1[to] == 1e9){
                ds1[to] = alt;
                que.push({to, alt});
            }
        }
    }

    dg0[G] = 0;
    que.push({G, 0});

    while(!que.empty()){
        tie(from, d) = que.front();
        que.pop();
        for (auto to : E[from]){
            alt = d+1;
            if (alt % 2 == 0 && dg0[to] == 1e9){
                dg0[to] = alt;
                que.push({to, alt});
            }   
            else if (alt % 2 == 1 && dg1[to] == 1e9){
                dg1[to] = alt;
                que.push({to, alt});
            }   
        }   
    } 

    long long d1, d2;

    for (int i=0; i<N; i++){
        if (P % 2 == 0){
            d1 = P-(ds1[i]+dg1[i]);
            d2 = P-(ds0[i]+dg0[i]);
            if (d1 >= 0 || d2 >= 0) ans.push_back(i+1);
        }
        else{
            d1 = P-(ds1[i]+dg0[i]);
            d2 = P-(ds0[i]+dg1[i]);
            if (d1 >= 0 || d2 >= 0) ans.push_back(i+1);
        }
    }

    if (ans.size() == 0) cout << -1 << endl;
    else{
        cout << ans.size() << endl;
        for (auto x : ans) cout << x << endl;
    }

    return 0;
}
0