結果
| 問題 |
No.1995 CHIKA Road
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2024-07-30 10:20:50 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 1,270 ms / 2,000 ms |
| コード長 | 2,921 bytes |
| コンパイル時間 | 2,527 ms |
| コンパイル使用メモリ | 80,348 KB |
| 実行使用メモリ | 111,576 KB |
| 最終ジャッジ日時 | 2024-07-30 10:21:19 |
| 合計ジャッジ時間 | 27,076 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 37 |
ソースコード
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 m = sc.nextInt();
int[] lefts = new int[m];
int[] rights = new int[m];
TreeMap<Integer, Integer> compress = new TreeMap<>();
for (int i = 0; i < m; i++) {
lefts[i] = sc.nextInt();
rights[i] = sc.nextInt();
compress.put(lefts[i], null);
compress.put(rights[i], null);
}
compress.put(1, null);
compress.put(n, null);
int idx = 0;
List<List<Path>> graph = new ArrayList<>();
for (int x : compress.keySet()) {
graph.add(new ArrayList<>());
if (x != compress.lastKey()) {
graph.get(idx).add(new Path(idx + 1, (compress.higherKey(x) - x) * 2));
}
compress.put(x, idx++);
}
for (int i = 0; i < m; i++) {
graph.get(compress.get(lefts[i])).add(new Path(compress.get(rights[i]), (rights[i] - lefts[i]) * 2 - 1));
}
PriorityQueue<Path> queue = new PriorityQueue<>();
queue.add(new Path(0, 0));
int[] costs = new int[idx];
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 (Path x : graph.get(p.idx)) {
queue.add(new Path(x.idx, p.value + x.value));
}
}
System.out.println(costs[idx - 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;
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();
}
}
}
tenten