結果

問題 No.1577 織姫と彦星2
ユーザー rogi52rogi52
提出日時 2022-10-22 13:18:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 212,292 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-07-01 15:32:41
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 33 ms
5,376 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 125 ms
5,628 KB
testcase_08 AC 48 ms
5,376 KB
testcase_09 AC 165 ms
6,912 KB
testcase_10 AC 46 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 77 ms
5,376 KB
testcase_13 AC 37 ms
5,376 KB
testcase_14 AC 98 ms
5,376 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 120 ms
5,376 KB
testcase_17 AC 62 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 105 ms
5,376 KB
testcase_20 AC 87 ms
5,376 KB
testcase_21 AC 115 ms
5,504 KB
testcase_22 AC 112 ms
5,376 KB
testcase_23 AC 44 ms
5,376 KB
testcase_24 AC 143 ms
5,760 KB
testcase_25 AC 29 ms
5,376 KB
testcase_26 AC 45 ms
5,376 KB
testcase_27 AC 113 ms
5,376 KB
testcase_28 AC 90 ms
5,376 KB
testcase_29 AC 59 ms
5,376 KB
testcase_30 AC 67 ms
5,376 KB
testcase_31 AC 117 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 56 ms
5,376 KB
testcase_35 AC 109 ms
5,376 KB
testcase_36 AC 113 ms
5,376 KB
testcase_37 AC 152 ms
6,272 KB
testcase_38 AC 153 ms
6,144 KB
testcase_39 AC 50 ms
5,376 KB
testcase_40 AC 51 ms
5,376 KB
testcase_41 AC 130 ms
5,376 KB
testcase_42 AC 81 ms
5,376 KB
testcase_43 AC 84 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 23 ms
5,376 KB
testcase_46 AC 28 ms
5,376 KB
testcase_47 AC 123 ms
5,376 KB
testcase_48 AC 51 ms
5,376 KB
testcase_49 AC 62 ms
5,376 KB
testcase_50 AC 39 ms
5,376 KB
testcase_51 AC 12 ms
5,376 KB
testcase_52 AC 149 ms
5,760 KB
testcase_53 AC 145 ms
5,760 KB
testcase_54 AC 64 ms
5,376 KB
testcase_55 AC 139 ms
5,632 KB
testcase_56 AC 35 ms
5,376 KB
testcase_57 AC 17 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> bfs(vector<vector<int>> &graph, int s) {
    int INF = numeric_limits<int>::max();
    vector<int> dist(graph.size(), INF);
    queue<int> q;
    dist[s] = 0, q.push(s);
    while(!q.empty()){
        int u = q.front(); q.pop();
        for(int v : graph[u]) if(dist[v] == INF)
            dist[v] = dist[u] + 1, q.push(v);
    }
    return dist;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,start,end; cin >> N >> start >> end;
    vector<int> stone(N);
    rep(i,N) cin >> stone[i];
    stone.push_back(start);
    stone.push_back(end);
    N += 2;

    vector<int> V = stone;
    sort(V.begin(), V.end());
    vector<vector<int>> G(N);
    rep(i,N) {
        int u = lower_bound(V.begin(), V.end(), stone[i]) - V.begin();
        rep(b,30) {
            int to = (stone[i] ^ (1 << b));
            if(binary_search(V.begin(), V.end(), to)) {
                int v = lower_bound(V.begin(), V.end(), to) - V.begin();
                G[u].push_back(v);
                G[v].push_back(u);
            }
        }
    }

    start = lower_bound(V.begin(), V.end(), start) - V.begin();
    end = lower_bound(V.begin(), V.end(), end) - V.begin();
    int ans = bfs(G, start)[end];
    cout << (ans == numeric_limits<int>::max() ? -1 : ans - 1) << endl;
}
0