結果

問題 No.1576 織姫と彦星
ユーザー tenten
提出日時 2024-04-23 18:40:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 2,556 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 79,428 KB
実行使用メモリ 57,520 KB
最終ジャッジ日時 2024-10-15 19:26:42
合計ジャッジ時間 12,720 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n + 2];
        List<List<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n + 2; i++) {
            graph.add(new ArrayList<>());
        }
        List<Set<Integer>> nextTo = new ArrayList<>();
        for (int i = 0; i < n + 2; i++) {
            values[i] = sc.nextInt();
            nextTo.add(new HashSet<>());
            for (int j = 0; j <= 30; j++) {
                nextTo.get(i).add(values[i] ^ (1 << j));
            }
            for (int j = 0; j < i; j++) {
                if (nextTo.get(j).contains(values[i])) {
                    graph.get(i).add(j);
                    graph.get(j).add(i);
                }
            }
        }
        Deque<Path> deq = new ArrayDeque<>();
        int[] costs = new int[n + 2];
        Arrays.fill(costs, Integer.MAX_VALUE);
        deq.add(new Path(0, 0));
        while (deq.size() > 0) {
            Path  p = deq.poll();
            if (costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            for (int x : graph.get(p.idx)) {
                deq.add(new Path(x, p.value + 1));
            }
        }
        System.out.println(costs[1] == Integer.MAX_VALUE ? -1 : costs[1] - 1);
    }
    
    static class Path {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0