結果

問題 No.2064 Smallest Sequence on Grid
ユーザー tentententen
提出日時 2022-09-05 15:05:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,546 ms / 3,000 ms
コード長 2,467 bytes
コンパイル時間 3,077 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 92,372 KB
最終ジャッジ日時 2024-11-20 15:49:35
合計ジャッジ時間 20,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,372 KB
testcase_01 AC 55 ms
50,160 KB
testcase_02 AC 55 ms
49,868 KB
testcase_03 AC 55 ms
50,268 KB
testcase_04 AC 55 ms
50,280 KB
testcase_05 AC 55 ms
50,240 KB
testcase_06 AC 55 ms
50,276 KB
testcase_07 AC 55 ms
50,028 KB
testcase_08 AC 56 ms
50,056 KB
testcase_09 AC 56 ms
50,060 KB
testcase_10 AC 59 ms
50,236 KB
testcase_11 AC 61 ms
50,284 KB
testcase_12 AC 59 ms
50,440 KB
testcase_13 AC 61 ms
50,572 KB
testcase_14 AC 81 ms
50,940 KB
testcase_15 AC 65 ms
50,748 KB
testcase_16 AC 80 ms
50,856 KB
testcase_17 AC 412 ms
77,792 KB
testcase_18 AC 396 ms
77,592 KB
testcase_19 AC 404 ms
77,528 KB
testcase_20 AC 1,462 ms
92,260 KB
testcase_21 AC 1,489 ms
91,784 KB
testcase_22 AC 1,337 ms
92,372 KB
testcase_23 AC 954 ms
86,596 KB
testcase_24 AC 942 ms
86,468 KB
testcase_25 AC 967 ms
86,508 KB
testcase_26 AC 1,546 ms
88,292 KB
testcase_27 AC 1,474 ms
88,452 KB
testcase_28 AC 411 ms
77,040 KB
testcase_29 AC 1,323 ms
81,120 KB
testcase_30 AC 399 ms
74,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int h = sc.nextInt();
        int w = sc.nextInt();
        char[][] field = new char[h][];
        for (int i = 0; i < h; i++) {
            field[i] = sc.next().toCharArray();
        }
        StringBuilder ans = new StringBuilder();
        HashSet<Integer> current = new HashSet<>();
        HashSet<Integer> next = new HashSet<>();
        current.add(0);
        for (int i = 0; i < h + w - 1; i++) {
            char min = (char)('z' + 1);
            for (int x : current) {
                int r = x / w;
                int c = x % w;
                if (ans.length() == i) {
                    ans.append(field[r][c]);
                }
                if (r < h - 1) {
                    if (field[r + 1][c] < min) {
                        min = field[r + 1][c];
                        next.clear();
                        next.add((r + 1) * w + c);
                    } else if (field[r + 1][c] == min) {
                        next.add((r + 1) * w + c);
                    }
                }
                if (c < w - 1) {
                    if (field[r][c + 1] < min) {
                        min = field[r][c + 1];
                        next.clear();
                        next.add(r * w + c + 1);
                    } else if (field[r][c + 1] == min) {
                        next.add(r * w + c + 1);
                    }
                }
            }
            HashSet<Integer> tmp = next;
            next = current;
            current = tmp;
            next.clear();
        }
        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