結果

問題 No.1577 織姫と彦星2
ユーザー tentententen
提出日時 2021-06-29 18:53:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 2,514 bytes
コンパイル時間 3,426 ms
コンパイル使用メモリ 80,912 KB
実行使用メモリ 62,180 KB
最終ジャッジ日時 2024-06-25 21:13:47
合計ジャッジ時間 21,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,004 KB
testcase_01 AC 53 ms
36,964 KB
testcase_02 AC 53 ms
36,972 KB
testcase_03 AC 53 ms
36,956 KB
testcase_04 AC 51 ms
36,684 KB
testcase_05 AC 192 ms
45,712 KB
testcase_06 AC 126 ms
42,424 KB
testcase_07 AC 458 ms
55,220 KB
testcase_08 AC 268 ms
49,872 KB
testcase_09 AC 633 ms
62,180 KB
testcase_10 AC 249 ms
48,064 KB
testcase_11 AC 143 ms
41,796 KB
testcase_12 AC 358 ms
51,664 KB
testcase_13 AC 206 ms
46,576 KB
testcase_14 AC 399 ms
53,008 KB
testcase_15 AC 240 ms
47,828 KB
testcase_16 AC 440 ms
55,416 KB
testcase_17 AC 340 ms
50,912 KB
testcase_18 AC 63 ms
37,400 KB
testcase_19 AC 426 ms
54,544 KB
testcase_20 AC 385 ms
52,588 KB
testcase_21 AC 455 ms
55,316 KB
testcase_22 AC 448 ms
54,212 KB
testcase_23 AC 274 ms
49,740 KB
testcase_24 AC 471 ms
54,952 KB
testcase_25 AC 213 ms
46,244 KB
testcase_26 AC 274 ms
49,532 KB
testcase_27 AC 359 ms
51,732 KB
testcase_28 AC 401 ms
51,932 KB
testcase_29 AC 277 ms
48,748 KB
testcase_30 AC 319 ms
50,848 KB
testcase_31 AC 432 ms
53,888 KB
testcase_32 AC 106 ms
39,168 KB
testcase_33 AC 80 ms
38,524 KB
testcase_34 AC 294 ms
49,364 KB
testcase_35 AC 436 ms
54,080 KB
testcase_36 AC 432 ms
53,932 KB
testcase_37 AC 594 ms
60,096 KB
testcase_38 AC 554 ms
59,364 KB
testcase_39 AC 307 ms
50,160 KB
testcase_40 AC 280 ms
49,896 KB
testcase_41 AC 426 ms
53,944 KB
testcase_42 AC 320 ms
50,576 KB
testcase_43 AC 312 ms
50,652 KB
testcase_44 AC 103 ms
39,740 KB
testcase_45 AC 198 ms
45,232 KB
testcase_46 AC 194 ms
45,608 KB
testcase_47 AC 352 ms
51,284 KB
testcase_48 AC 245 ms
48,044 KB
testcase_49 AC 328 ms
50,824 KB
testcase_50 AC 243 ms
47,980 KB
testcase_51 AC 145 ms
43,156 KB
testcase_52 AC 487 ms
55,744 KB
testcase_53 AC 470 ms
54,992 KB
testcase_54 AC 283 ms
49,208 KB
testcase_55 AC 447 ms
54,060 KB
testcase_56 AC 239 ms
48,072 KB
testcase_57 AC 173 ms
45,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        HashMap<Integer, Integer> map = new HashMap<>();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n + 2; i++) {
            map.put(sc.nextInt(), i);
            graph.add(new ArrayList<>());
        }
        for (int x : map.keySet()) {
            for (int i = 0; i < 30; i++) {
                if (map.containsKey(x ^ (1 << i))) {
                    int a = map.get(x);
                    int b = map.get(x ^ (1 << i));
                    graph.get(a).add(b);
                    graph.get(b).add(a);
                }
            }
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0));
        int[] costs = new int[n + 2];
        Arrays.fill(costs, Integer.MAX_VALUE);
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            for (int x : graph.get(p.idx)) {
                queue.add(new Path(x, p.value + 1));
            }
        }
        if (costs[1] == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(costs[1] - 1);
        }
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
}


class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0