結果

問題 No.1577 織姫と彦星2
ユーザー tentententen
提出日時 2021-11-29 14:14:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 2,459 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 80,388 KB
実行使用メモリ 62,040 KB
最終ジャッジ日時 2024-07-02 11:28:25
合計ジャッジ時間 21,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,840 KB
testcase_01 AC 53 ms
37,056 KB
testcase_02 AC 53 ms
36,916 KB
testcase_03 AC 53 ms
36,796 KB
testcase_04 AC 54 ms
37,056 KB
testcase_05 AC 189 ms
45,800 KB
testcase_06 AC 127 ms
42,680 KB
testcase_07 AC 466 ms
55,588 KB
testcase_08 AC 277 ms
49,800 KB
testcase_09 AC 603 ms
62,040 KB
testcase_10 AC 239 ms
47,124 KB
testcase_11 AC 139 ms
42,040 KB
testcase_12 AC 365 ms
51,644 KB
testcase_13 AC 211 ms
46,876 KB
testcase_14 AC 387 ms
53,068 KB
testcase_15 AC 237 ms
48,216 KB
testcase_16 AC 430 ms
55,344 KB
testcase_17 AC 328 ms
51,164 KB
testcase_18 AC 65 ms
37,052 KB
testcase_19 AC 417 ms
54,164 KB
testcase_20 AC 391 ms
52,812 KB
testcase_21 AC 446 ms
55,616 KB
testcase_22 AC 437 ms
54,356 KB
testcase_23 AC 272 ms
49,760 KB
testcase_24 AC 453 ms
55,380 KB
testcase_25 AC 205 ms
46,592 KB
testcase_26 AC 264 ms
49,868 KB
testcase_27 AC 359 ms
51,784 KB
testcase_28 AC 392 ms
52,008 KB
testcase_29 AC 286 ms
49,148 KB
testcase_30 AC 320 ms
50,864 KB
testcase_31 AC 411 ms
54,252 KB
testcase_32 AC 104 ms
39,324 KB
testcase_33 AC 91 ms
38,568 KB
testcase_34 AC 272 ms
50,000 KB
testcase_35 AC 420 ms
54,572 KB
testcase_36 AC 427 ms
54,012 KB
testcase_37 AC 567 ms
60,152 KB
testcase_38 AC 551 ms
59,696 KB
testcase_39 AC 291 ms
50,588 KB
testcase_40 AC 278 ms
50,008 KB
testcase_41 AC 424 ms
54,408 KB
testcase_42 AC 306 ms
50,544 KB
testcase_43 AC 304 ms
50,952 KB
testcase_44 AC 102 ms
39,720 KB
testcase_45 AC 190 ms
45,280 KB
testcase_46 AC 187 ms
45,760 KB
testcase_47 AC 354 ms
51,176 KB
testcase_48 AC 245 ms
47,892 KB
testcase_49 AC 298 ms
50,528 KB
testcase_50 AC 245 ms
48,332 KB
testcase_51 AC 141 ms
43,068 KB
testcase_52 AC 485 ms
56,156 KB
testcase_53 AC 458 ms
54,796 KB
testcase_54 AC 288 ms
49,720 KB
testcase_55 AC 421 ms
54,380 KB
testcase_56 AC 229 ms
47,732 KB
testcase_57 AC 169 ms
45,068 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();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        HashMap<Integer, Integer> idxes = new HashMap<>();
        for (int i = 0; i < n + 2; i++) {
            graph.add(new ArrayList<>());
            idxes.put(sc.nextInt(), i);
        }
        for (int x : idxes.keySet()) {
            for (int i = 0; i < 30; i++) {
                if (idxes.containsKey(x ^ (1 << i))) {
                    int a = idxes.get(x);
                    int b = idxes.get(x ^ (1 << i));
                    graph.get(a).add(b);
                    graph.get(b).add(a);
                }
            }
        }
       int[] costs = new int[n + 2];
        Arrays.fill(costs, Integer.MAX_VALUE);
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0));
        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 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 double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0