結果

問題 No.2639 Longest Increasing Walk
ユーザー tentententen
提出日時 2024-02-29 11:30:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 2,428 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 78,832 KB
実行使用メモリ 85,768 KB
最終ジャッジ日時 2024-09-29 12:40:13
合計ジャッジ時間 7,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,428 KB
testcase_01 AC 46 ms
50,428 KB
testcase_02 AC 48 ms
50,184 KB
testcase_03 AC 48 ms
50,428 KB
testcase_04 AC 298 ms
57,404 KB
testcase_05 AC 303 ms
57,948 KB
testcase_06 AC 301 ms
58,356 KB
testcase_07 AC 278 ms
58,088 KB
testcase_08 AC 299 ms
58,496 KB
testcase_09 AC 303 ms
85,768 KB
testcase_10 AC 247 ms
57,156 KB
testcase_11 AC 224 ms
55,828 KB
testcase_12 AC 115 ms
53,632 KB
testcase_13 AC 241 ms
58,316 KB
testcase_14 AC 195 ms
57,736 KB
testcase_15 AC 48 ms
50,412 KB
testcase_16 AC 90 ms
51,940 KB
testcase_17 AC 185 ms
57,788 KB
testcase_18 AC 204 ms
57,900 KB
testcase_19 AC 132 ms
55,544 KB
testcase_20 AC 169 ms
57,436 KB
testcase_21 AC 221 ms
55,900 KB
testcase_22 AC 148 ms
55,584 KB
testcase_23 AC 58 ms
50,716 KB
testcase_24 AC 55 ms
50,044 KB
testcase_25 AC 77 ms
51,424 KB
testcase_26 AC 50 ms
50,124 KB
testcase_27 AC 72 ms
51,400 KB
testcase_28 AC 51 ms
50,540 KB
testcase_29 AC 47 ms
50,308 KB
testcase_30 AC 49 ms
50,272 KB
testcase_31 AC 49 ms
50,348 KB
testcase_32 AC 48 ms
50,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static int[][] field;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int h = sc.nextInt();
        int w = sc.nextInt();
        field = new int[h][w];
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                field[i][j] = sc.nextInt();
            }
        }
        dp = new int[h][w];
        int ans = 0;
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                if (dp[i][j] == 0) {
                    dp[i][j] = dfw(i, j);
                }
                ans = Math.max(ans, dp[i][j]);
            }
        }
        System.out.println(ans);
    }
    
    static int dfw(int r, int c) {
        if (dp[r][c] == 0) {
            int current = 0;
            if (r > 0 && field[r - 1][c] < field[r][c]) {
                current = Math.max(current, dfw(r - 1, c));
            }
            if (r < field.length - 1 && field[r + 1][c] < field[r][c]) {
                current = Math.max(current, dfw(r + 1, c));
            }
            if (c > 0 && field[r][c - 1] < field[r][c]) {
                current = Math.max(current, dfw(r, c - 1));
            }
            if (c < field[r].length - 1 && field[r][c + 1] < field[r][c]) {
                current = Math.max(current, dfw(r, c + 1));
            }
            dp[r][c] = current + 1;
        }
        return dp[r][c];
    }
}
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