結果

問題 No.2759 Take Pictures, Elements?
ユーザー tentententen
提出日時 2024-05-22 13:00:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 2,657 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 80,632 KB
実行使用メモリ 58,828 KB
最終ジャッジ日時 2024-05-22 13:01:34
合計ジャッジ時間 7,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
58,624 KB
testcase_01 AC 336 ms
58,456 KB
testcase_02 AC 48 ms
50,444 KB
testcase_03 AC 48 ms
50,212 KB
testcase_04 AC 47 ms
50,344 KB
testcase_05 AC 49 ms
50,484 KB
testcase_06 AC 49 ms
50,368 KB
testcase_07 AC 51 ms
50,428 KB
testcase_08 AC 49 ms
50,352 KB
testcase_09 AC 251 ms
58,328 KB
testcase_10 AC 227 ms
58,420 KB
testcase_11 AC 241 ms
58,236 KB
testcase_12 AC 230 ms
58,308 KB
testcase_13 AC 235 ms
58,268 KB
testcase_14 AC 248 ms
58,620 KB
testcase_15 AC 248 ms
58,784 KB
testcase_16 AC 241 ms
58,828 KB
testcase_17 AC 244 ms
58,540 KB
testcase_18 AC 241 ms
58,824 KB
testcase_19 AC 247 ms
58,700 KB
testcase_20 AC 237 ms
58,772 KB
testcase_21 AC 48 ms
50,516 KB
testcase_22 AC 47 ms
50,464 KB
testcase_23 AC 47 ms
50,416 KB
権限があれば一括ダウンロードができます

ソースコード

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 q = sc.nextInt();
        Map<Integer, List<Integer>> places = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (!places.containsKey(x)) {
                places.put(x, new ArrayList<>());
            }
            places.get(x).add(i);
        }
        int[] costs = new int[n];
        Arrays.fill(costs, Integer.MAX_VALUE);
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0));
        while (q-- > 0) {
            while (queue.size() > 0) {
                Path p = queue.poll();
                if (costs[p.idx] <= p.value) {
                    continue;
                }
                costs[p.idx] = p.value;
                if (p.idx > 0) {
                    queue.add(new Path(p.idx - 1, p.value + 1));
                }
                if (p.idx < n - 1) {
                    queue.add(new Path(p.idx + 1, p.value + 1));
                }
            }
            int x = sc.nextInt();
            for (int y : places.get(x)) {
                queue.add(new Path(y, costs[y]));
            }
            Arrays.fill(costs, Integer.MAX_VALUE);
        }
        System.out.println(queue.poll().value);
    }
    
    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;
    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