結果
問題 | No.2673 A present from B |
ユーザー | ks2m |
提出日時 | 2024-03-15 22:32:33 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,962 bytes |
コンパイル時間 | 2,320 ms |
コンパイル使用メモリ | 79,580 KB |
実行使用メモリ | 68,320 KB |
最終ジャッジ日時 | 2024-09-30 01:57:50 |
合計ジャッジ時間 | 18,772 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
54,448 KB |
testcase_01 | AC | 125 ms
54,140 KB |
testcase_02 | AC | 118 ms
54,496 KB |
testcase_03 | AC | 113 ms
53,880 KB |
testcase_04 | AC | 182 ms
58,580 KB |
testcase_05 | AC | 103 ms
52,912 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 139 ms
54,364 KB |
testcase_10 | AC | 139 ms
54,252 KB |
testcase_11 | AC | 133 ms
54,280 KB |
testcase_12 | AC | 637 ms
60,008 KB |
testcase_13 | AC | 485 ms
60,264 KB |
testcase_14 | AC | 942 ms
66,492 KB |
testcase_15 | AC | 419 ms
60,008 KB |
testcase_16 | AC | 365 ms
59,804 KB |
testcase_17 | AC | 280 ms
59,844 KB |
testcase_18 | AC | 450 ms
59,940 KB |
testcase_19 | AC | 233 ms
59,336 KB |
testcase_20 | AC | 825 ms
60,300 KB |
testcase_21 | AC | 1,562 ms
67,984 KB |
testcase_22 | AC | 105 ms
52,872 KB |
testcase_23 | AC | 119 ms
54,060 KB |
testcase_24 | AC | 104 ms
52,836 KB |
testcase_25 | AC | 113 ms
54,060 KB |
testcase_26 | AC | 118 ms
54,312 KB |
ソースコード
import java.util.ArrayDeque; import java.util.Arrays; import java.util.Deque; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[] a = new int[m]; for (int i = 0; i < m; i++) { a[i] = sc.nextInt() - 1; } sc.close(); int inf = 100000000; StringBuilder sb = new StringBuilder(); for (int i = 1; i < n; i++) { int[][] d = new int[m + 1][n]; for (int j = 0; j < d.length; j++) { Arrays.fill(d[j], inf); } d[0][i] = 0; Deque<Obj> que = new ArrayDeque<>(); que.add(new Obj(0, i, 0)); while (!que.isEmpty()) { Obj o = que.poll(); if (o.d != d[o.x][o.y]) { continue; } if (o.x == m && o.y == 0) { sb.append(o.d).append(' '); break; } if (o.x < m) { if (a[o.x] == o.y) { if (o.d < d[o.x + 1][o.y + 1]) { d[o.x + 1][o.y + 1] = o.d; que.addFirst(new Obj(o.x + 1, o.y + 1, o.d)); } } else if (a[o.x] == o.y - 1) { if (o.d < d[o.x + 1][o.y - 1]) { d[o.x + 1][o.y - 1] = o.d; que.addFirst(new Obj(o.x + 1, o.y - 1, o.d)); } } else { if (o.d < d[o.x + 1][o.y]) { d[o.x + 1][o.y] = o.d; que.addFirst(new Obj(o.x + 1, o.y, o.d)); } } } if (o.y < n - 1 && o.d + 1 < d[o.x][o.y + 1]) { d[o.x][o.y + 1] = o.d + 1; que.addLast(new Obj(o.x, o.y + 1, o.d + 1)); } if (o.y > 0 && o.d + 1 < d[o.x][o.y - 1]) { d[o.x][o.y - 1] = o.d + 1; que.addLast(new Obj(o.x, o.y - 1, o.d + 1)); } } // for (int j = 0; j < d.length; j++) { // System.out.println(Arrays.toString(d[i])); // } // System.out.println(); } sb.deleteCharAt(sb.length() - 1); System.out.println(sb.toString()); } static class Obj { int x, y, d; public Obj(int x, int y, int d) { this.x = x; this.y = y; this.d = d; } } }