結果

問題 No.1577 織姫と彦星2
ユーザー kagasantwikagasantwi
提出日時 2021-06-19 15:58:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 2,411 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 87,620 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 22:07:13
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 108 ms
6,940 KB
testcase_08 AC 29 ms
6,940 KB
testcase_09 AC 172 ms
6,940 KB
testcase_10 AC 17 ms
6,940 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 52 ms
6,944 KB
testcase_13 AC 12 ms
6,940 KB
testcase_14 AC 57 ms
6,940 KB
testcase_15 AC 25 ms
6,940 KB
testcase_16 AC 105 ms
6,940 KB
testcase_17 AC 47 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 85 ms
6,944 KB
testcase_20 AC 72 ms
6,940 KB
testcase_21 AC 100 ms
6,940 KB
testcase_22 AC 91 ms
6,948 KB
testcase_23 AC 31 ms
6,944 KB
testcase_24 AC 99 ms
6,944 KB
testcase_25 AC 17 ms
6,940 KB
testcase_26 AC 30 ms
6,940 KB
testcase_27 AC 34 ms
6,944 KB
testcase_28 AC 60 ms
6,944 KB
testcase_29 AC 23 ms
6,944 KB
testcase_30 AC 38 ms
6,940 KB
testcase_31 AC 84 ms
6,944 KB
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 27 ms
6,944 KB
testcase_35 AC 91 ms
6,944 KB
testcase_36 AC 84 ms
6,940 KB
testcase_37 AC 168 ms
6,940 KB
testcase_38 AC 137 ms
6,940 KB
testcase_39 AC 40 ms
6,944 KB
testcase_40 AC 29 ms
6,940 KB
testcase_41 AC 73 ms
6,944 KB
testcase_42 AC 26 ms
6,940 KB
testcase_43 AC 29 ms
6,940 KB
testcase_44 AC 3 ms
6,940 KB
testcase_45 AC 13 ms
6,940 KB
testcase_46 AC 11 ms
6,940 KB
testcase_47 AC 33 ms
6,944 KB
testcase_48 AC 17 ms
6,940 KB
testcase_49 AC 42 ms
6,944 KB
testcase_50 AC 22 ms
6,940 KB
testcase_51 AC 4 ms
6,940 KB
testcase_52 AC 94 ms
6,940 KB
testcase_53 AC 101 ms
6,944 KB
testcase_54 AC 26 ms
6,940 KB
testcase_55 AC 72 ms
6,944 KB
testcase_56 AC 25 ms
6,944 KB
testcase_57 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <map>
using namespace std;

/**
 * 方針
 * 石をノードとした無向グラフとして考える。
 * ハミング距離が1以下の石の間に重み1のエッジを張る。
 * start, end間の最短距離を求める。
 * ノード数に対してエッジが少なめなことを利用する。
 */

int main(){
    
    // ローカルではテストケースを1回の実行で全部試す
    for (int N; cin >> N;) {
        // 石はstart, end, NのN+2種類
        vector<int>stone(N + 2);
        // startの石から何種類使ってその石に辿り着けたか。辿り着けない場合は-1。
        vector<int>score(N + 2, -1);
        
        // 石の性質を入力
        cin >> stone[0] >> stone[1];
        for(int i = 2; i < N + 2; i++)cin >> stone[i];
        
        // 性質の場所を記録しておく
        map<int, int>stonePosition;
        for (int i = 0; i < N + 2; i++) {
            stonePosition[stone[i]] = i;
        } 

        // 幅優先探索用キュー
        queue<int>Q;
        // 幅優先探索の初期状態
        score[0] = 0;
        Q.push(0);
        
        // 幅優先探索
        while(!Q.empty()){
            int index = Q.front();
            Q.pop();
            
            // 未利用の石を調べる
            for (int bit = 1; bit <= 1000000000; bit <<= 1) {
                // 1bitだけ異なる石の性質
                int target = stone[index] ^ bit;
                // そんな石があるかどうか
                if (stonePosition.find(target) == stonePosition.end())continue;
                int toIndex = stonePosition[target];
                
                // 繋げられない場合はcontinue
                if (__builtin_popcount(stone[index] ^ stone[toIndex]) > 1) continue;
                // 利用済みの場合はcontinue
                if (score[toIndex] >= 0) continue;
                
                // 利用する石のscoreを更新してキューに追加
                score[toIndex] = score[index] + 1;
                Q.push(toIndex);
            }
        }
        
        // 出力
        if (score[1] >= 0) {
            // end側の石は答えに含めない
            cout << score[1] - 1 << endl;    
        } else {
            cout << -1 << endl;
        }
    }
    
    return 0;
}
0