結果

問題 No.1576 織姫と彦星
ユーザー irumo8202irumo8202
提出日時 2022-02-16 18:46:52
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,212 bytes
コンパイル時間 8,256 ms
コンパイル使用メモリ 232,100 KB
実行使用メモリ 45,664 KB
最終ジャッジ日時 2024-12-31 16:46:47
合計ジャッジ時間 14,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
39,424 KB
testcase_01 AC 65 ms
39,552 KB
testcase_02 AC 64 ms
39,296 KB
testcase_03 AC 64 ms
39,296 KB
testcase_04 AC 64 ms
39,296 KB
testcase_05 AC 63 ms
39,424 KB
testcase_06 AC 65 ms
39,296 KB
testcase_07 AC 74 ms
43,392 KB
testcase_08 AC 72 ms
43,648 KB
testcase_09 AC 65 ms
39,296 KB
testcase_10 AC 79 ms
43,520 KB
testcase_11 AC 66 ms
39,168 KB
testcase_12 AC 77 ms
43,640 KB
testcase_13 AC 77 ms
43,392 KB
testcase_14 AC 78 ms
43,260 KB
testcase_15 AC 79 ms
43,392 KB
testcase_16 AC 75 ms
43,648 KB
testcase_17 AC 78 ms
43,392 KB
testcase_18 AC 73 ms
43,648 KB
testcase_19 AC 75 ms
43,520 KB
testcase_20 AC 67 ms
42,624 KB
testcase_21 AC 76 ms
43,516 KB
testcase_22 AC 73 ms
43,392 KB
testcase_23 AC 71 ms
43,392 KB
testcase_24 AC 73 ms
43,520 KB
testcase_25 AC 77 ms
43,520 KB
testcase_26 AC 74 ms
43,392 KB
testcase_27 AC 64 ms
39,296 KB
testcase_28 AC 77 ms
43,392 KB
testcase_29 AC 74 ms
43,264 KB
testcase_30 AC 64 ms
39,296 KB
testcase_31 AC 73 ms
43,264 KB
testcase_32 AC 76 ms
43,516 KB
testcase_33 AC 86 ms
43,776 KB
testcase_34 AC 63 ms
39,296 KB
testcase_35 AC 77 ms
43,392 KB
testcase_36 AC 73 ms
43,392 KB
testcase_37 AC 84 ms
43,776 KB
testcase_38 AC 76 ms
43,264 KB
testcase_39 AC 76 ms
43,380 KB
testcase_40 AC 75 ms
43,392 KB
testcase_41 AC 76 ms
43,504 KB
testcase_42 AC 71 ms
43,648 KB
testcase_43 AC 72 ms
43,392 KB
testcase_44 AC 87 ms
43,520 KB
testcase_45 AC 74 ms
45,556 KB
testcase_46 AC 81 ms
43,264 KB
testcase_47 AC 68 ms
43,008 KB
testcase_48 AC 76 ms
43,376 KB
testcase_49 AC 76 ms
43,504 KB
testcase_50 AC 68 ms
42,752 KB
testcase_51 AC 67 ms
42,880 KB
testcase_52 AC 73 ms
43,776 KB
testcase_53 AC 79 ms
43,264 KB
testcase_54 AC 77 ms
43,648 KB
testcase_55 AC 79 ms
43,392 KB
testcase_56 AC 78 ms
43,648 KB
testcase_57 AC 67 ms
39,552 KB
testcase_58 AC 75 ms
45,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from "fs"

const bitCount = (n: number): number => {
    n = n - ((n >>> 1) & 0x55555555)
    n = (n & 0x33333333) + ((n >>> 2) & 0x33333333)
    n = (n + (n >>> 4)) & 0x0f0f0f0f
    n = n + (n >>> 8)
    n = n + (n >>> 16)
    return n & 0x3f
}

const calcDist = (a: number, b: number): number => {
    return bitCount(a ^ b)
}

const bfs = (n: number, arr: number[]): number => {
    const que: number[] = [0]
    const dist = Array(n).fill(-1)
    dist[0] = 0

    while (que.length !== 0) {
        const v = que.shift()
        for (let u = 0; u < n; u++) {
            if (dist[u] !== -1) continue
            if (calcDist(arr[v], arr[u]) !== 1) continue
            dist[u] = dist[v] + 1
            que.push(u)
        }
    }
    return dist[n - 1]
}

const main = (args: string): void => {
    const input = args.trim().split("\n");
    const N = +input.shift()
    const [start, end] = input.shift().split(" ").map(x => Number(x))
    let stones = [start]
    stones = stones.concat(input.shift().split(" ").map(x => Number(x)))
    stones.push(end)

    const ans: number = bfs(N + 2, stones);
    console.log(ans === -1 ? ans : ans - 1)
}

main(fs.readFileSync('/dev/stdin', 'utf8'));
0