結果

問題 No.2157 崖
ユーザー tentententen
提出日時 2022-12-26 10:21:44
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,378 bytes
コンパイル時間 2,660 ms
コンパイル使用メモリ 84,176 KB
実行使用メモリ 129,284 KB
最終ジャッジ日時 2024-11-20 18:43:27
合計ジャッジ時間 78,651 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
124,928 KB
testcase_01 AC 55 ms
127,996 KB
testcase_02 AC 54 ms
124,272 KB
testcase_03 AC 54 ms
118,212 KB
testcase_04 AC 54 ms
126,484 KB
testcase_05 AC 54 ms
126,352 KB
testcase_06 AC 54 ms
42,512 KB
testcase_07 AC 55 ms
57,336 KB
testcase_08 AC 55 ms
129,284 KB
testcase_09 AC 55 ms
128,888 KB
testcase_10 AC 54 ms
37,232 KB
testcase_11 AC 55 ms
37,212 KB
testcase_12 AC 54 ms
37,184 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 53 ms
37,060 KB
testcase_24 AC 81 ms
128,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] matrix;
    static ArrayList<HashMap<Integer, Integer>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        matrix = new int[n][m];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                matrix[i][j] = sc.nextInt();
            }
            dp.add(new HashMap<>());
        }
        int ans = Integer.MAX_VALUE;
        for (int i = 0; i < m; i++) {
            ans = Math.min(ans, dfw(n - 2, matrix[n - 1][i]));
        }
        if (ans >= Integer.MAX_VALUE / 2) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            return 0;
        }
        if (!dp.get(idx).containsKey(v)) {
            int ans = Integer.MAX_VALUE / 2;
            for (int x : matrix[idx]) {
                if (x <= v) {
                    ans = Math.min(ans, Math.max(dfw(idx - 1, x), v - x));
                }
            }
            dp.get(idx).put(v, ans);
        }
        return dp.get(idx).get(v);
    }
}
class Utilities {
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0