結果

問題 No.1190 Points
ユーザー rogi52rogi52
提出日時 2022-10-21 01:58:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,693 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 210,980 KB
実行使用メモリ 17,192 KB
最終ジャッジ日時 2024-06-30 15:48:59
合計ジャッジ時間 7,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 82 ms
13,312 KB
testcase_04 AC 70 ms
12,160 KB
testcase_05 AC 57 ms
11,320 KB
testcase_06 AC 97 ms
15,872 KB
testcase_07 AC 122 ms
16,896 KB
testcase_08 AC 136 ms
16,312 KB
testcase_09 AC 140 ms
15,972 KB
testcase_10 AC 130 ms
16,360 KB
testcase_11 AC 91 ms
12,672 KB
testcase_12 AC 126 ms
16,132 KB
testcase_13 AC 80 ms
11,544 KB
testcase_14 AC 17 ms
9,856 KB
testcase_15 AC 137 ms
16,828 KB
testcase_16 AC 13 ms
5,632 KB
testcase_17 AC 133 ms
15,992 KB
testcase_18 AC 53 ms
9,220 KB
testcase_19 AC 14 ms
10,740 KB
testcase_20 AC 67 ms
10,792 KB
testcase_21 AC 31 ms
8,960 KB
testcase_22 AC 35 ms
12,912 KB
testcase_23 AC 175 ms
17,192 KB
testcase_24 AC 165 ms
17,176 KB
testcase_25 AC 119 ms
16,768 KB
testcase_26 AC 67 ms
16,512 KB
testcase_27 AC 119 ms
16,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

// g <- pair < v , cost > 
template < class T >
vector< T > dijkstra(vector<vector<pair<int, T>>> &graph, int s) {
    T INF = numeric_limits< T >::max();
    vector<T> dist(graph.size(), INF);
    priority_queue<pair<T,int>, vector<pair<T,int>>, greater<pair<T,int>>> q;
    q.push({dist[s] = T(0), s});
    while(!q.empty()){
        auto [uc, ui] = q.top(); q.pop();
        if(uc != dist[ui]) continue;
        for(auto [vi, vc] : graph[ui]) if(dist[vi] > uc + vc) 
            q.push({dist[vi] = uc + vc, vi});
    }
    return dist;
}


int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,M,P; cin >> N >> M >> P;
    int S,G; cin >> S >> G; S--; G--;
    vector<vector<pair<int,int>>> H(N * 2);
    auto h = [&](int v, int p) { return v * 2 + p; };
    rep(_,M) {
        int u,v; cin >> u >> v; u--; v--;
        for(int p : {0, 1}) {
            H[h(u, p)].push_back({h(v, 1 - p), 1});
            H[h(v, p)].push_back({h(u, 1 - p), 1});
        }
    }

    auto distS = dijkstra(H, h(S, 0));
    auto distG = dijkstra(H, h(G, 0));
    vector<int> ans;
    int INF = numeric_limits<int>::max();
    rep(i,N) {
        int ok = 0;
        for(int ps : {0, 1}) for(int pg : {0, 1}) {
            int ds = distS[h(i, ps)];
            int dg = distG[h(i, pg)];
            ok |= (ds != INF && dg != INF && ds + dg <= P && (ds + dg) % 2 == P % 2);
        }
        if(ok) ans.push_back(i);
    }

    if(ans.empty()) {
        cout << -1 << "\n";
    } else {
        cout << ans.size() << "\n";
        for(int a : ans) cout << a + 1 << "\n";
    }
}
0