結果

問題 No.2000 Distanced Characters
ユーザー tentententen
提出日時 2023-02-28 16:40:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,113 ms / 2,000 ms
コード長 2,566 bytes
コンパイル時間 4,194 ms
コンパイル使用メモリ 83,296 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2023-10-13 23:33:18
合計ジャッジ時間 10,478 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,408 KB
testcase_01 AC 53 ms
49,872 KB
testcase_02 AC 48 ms
49,748 KB
testcase_03 AC 47 ms
49,792 KB
testcase_04 AC 74 ms
52,708 KB
testcase_05 AC 74 ms
52,088 KB
testcase_06 AC 79 ms
52,672 KB
testcase_07 AC 82 ms
52,780 KB
testcase_08 AC 333 ms
65,208 KB
testcase_09 AC 1,113 ms
71,604 KB
testcase_10 AC 838 ms
71,960 KB
testcase_11 AC 420 ms
72,192 KB
testcase_12 AC 414 ms
60,676 KB
testcase_13 AC 387 ms
60,872 KB
testcase_14 AC 396 ms
60,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        int[][] matrix = new int[26][26];
        ArrayList<TreeSet<Integer>> places = new ArrayList<>();
        for (int i = 0; i < 26; i++) {
            for (int j = 0; j < 26; j++) {
                matrix[i][j] = sc.nextInt();
            }
            places.add(new TreeSet<>());
            places.get(i).add(-300000);
        }
        boolean[][] disable = new boolean[26][26];
        for (int i = 0; i < inputs.length; i++) {
            int x = inputs[i] - 'a';
            for (int j = 0; j < 26; j++) {
                disable[j][x] |= (i - places.get(j).lower(i) < matrix[j][x]);
            }
            places.get(x).add(i);
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < 26; i++) {
            for (int j = 0; j < 26; j++) {
                if (j > 0) {
                    sb.append(" ");
                }
                if (disable[i][j]) {
                    sb.append("N");
                } else {
                    sb.append("Y");
                }
            }
            sb.append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    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