結果

問題 No.2095 High Rise
ユーザー tentententen
提出日時 2022-10-11 09:59:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,765 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 67,528 KB
最終ジャッジ日時 2024-06-25 05:45:05
合計ジャッジ時間 9,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,000 KB
testcase_01 AC 52 ms
50,184 KB
testcase_02 AC 52 ms
50,300 KB
testcase_03 AC 51 ms
49,856 KB
testcase_04 AC 51 ms
50,440 KB
testcase_05 AC 52 ms
50,372 KB
testcase_06 AC 51 ms
50,040 KB
testcase_07 AC 50 ms
50,184 KB
testcase_08 AC 52 ms
50,364 KB
testcase_09 AC 51 ms
50,152 KB
testcase_10 AC 52 ms
50,420 KB
testcase_11 AC 50 ms
50,408 KB
testcase_12 AC 76 ms
51,204 KB
testcase_13 AC 71 ms
51,400 KB
testcase_14 AC 100 ms
52,236 KB
testcase_15 AC 79 ms
50,936 KB
testcase_16 AC 70 ms
51,356 KB
testcase_17 AC 220 ms
57,568 KB
testcase_18 AC 183 ms
57,444 KB
testcase_19 AC 125 ms
52,212 KB
testcase_20 AC 226 ms
55,228 KB
testcase_21 AC 273 ms
59,276 KB
testcase_22 AC 460 ms
64,272 KB
testcase_23 AC 529 ms
64,248 KB
testcase_24 AC 462 ms
64,460 KB
testcase_25 AC 583 ms
67,528 KB
testcase_26 AC 465 ms
64,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        if (n == 1) {
            System.out.println(0);
            return;
        }
        long[][] dp = new long[n][m];
        for (int i = 0; i < m; i++) {
            dp[0][i] = sc.nextInt();
        }
        for (int i = 1; i < n; i++) {
            int[] values = new int[m];
            long min = Long.MAX_VALUE;
            for (int j = 0; j < m; j++) {
                values[j] = sc.nextInt();
                dp[i][j] = dp[i - 1][j] + values[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[j]);
            }
        }
        long ans = Long.MAX_VALUE;
        for (long x : dp[n - 1]) {
            ans = Math.min(ans, x);
        }
        System.out.println(ans);
    }
}
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0