結果

問題 No.2095 High Rise
ユーザー tentententen
提出日時 2024-04-30 13:55:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 1,997 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 79,784 KB
実行使用メモリ 57,656 KB
最終ジャッジ日時 2024-11-20 09:10:34
合計ジャッジ時間 9,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,676 KB
testcase_01 AC 63 ms
37,720 KB
testcase_02 AC 51 ms
37,028 KB
testcase_03 AC 60 ms
37,908 KB
testcase_04 AC 61 ms
37,684 KB
testcase_05 AC 60 ms
37,560 KB
testcase_06 AC 61 ms
37,956 KB
testcase_07 AC 60 ms
37,944 KB
testcase_08 AC 51 ms
37,176 KB
testcase_09 AC 50 ms
37,192 KB
testcase_10 AC 60 ms
37,980 KB
testcase_11 AC 61 ms
37,740 KB
testcase_12 AC 88 ms
39,080 KB
testcase_13 AC 84 ms
38,708 KB
testcase_14 AC 104 ms
39,628 KB
testcase_15 AC 88 ms
38,956 KB
testcase_16 AC 80 ms
38,464 KB
testcase_17 AC 232 ms
47,456 KB
testcase_18 AC 198 ms
45,424 KB
testcase_19 AC 143 ms
42,076 KB
testcase_20 AC 221 ms
45,840 KB
testcase_21 AC 296 ms
47,376 KB
testcase_22 AC 504 ms
56,176 KB
testcase_23 AC 479 ms
57,656 KB
testcase_24 AC 460 ms
57,364 KB
testcase_25 AC 465 ms
56,380 KB
testcase_26 AC 508 ms
55,620 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();
        if (n == 1) {
            System.out.println(0);
            return;
        }
        int m = sc.nextInt();
        int[][] values = new int[n][m];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                values[i][j] = sc.nextInt();
            }
        }
        long[][] dp = new long[n][m];
        for (int i = 0; i < m; i++) {
            dp[0][i] = values[0][i];
        }
        for (int i = 1; i < n; i++) {
            long min = Long.MAX_VALUE;
            for (int j = 0; j < m; j++) {
                dp[i][j] = dp[i - 1][j] + values[i][j];
                min = Math.min(min, dp[i][j]);
            }
            for (int j = 0; j < m; j++) {
                dp[i][j] = Math.min(dp[i][j], min + values[i][j]);
            }
        }
        long ans = Arrays.stream(dp[n - 1]).min().orElse(0L);
        System.out.println(ans);
    }
}
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