結果
問題 | No.2000 Distanced Characters |
ユーザー | tenten |
提出日時 | 2023-02-28 16:40:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,192 ms / 2,000 ms |
コード長 | 2,566 bytes |
コンパイル時間 | 3,243 ms |
コンパイル使用メモリ | 95,544 KB |
実行使用メモリ | 59,700 KB |
最終ジャッジ日時 | 2024-09-15 19:25:56 |
合計ジャッジ時間 | 9,327 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
37,156 KB |
testcase_01 | AC | 63 ms
37,104 KB |
testcase_02 | AC | 58 ms
37,116 KB |
testcase_03 | AC | 58 ms
37,072 KB |
testcase_04 | AC | 92 ms
39,688 KB |
testcase_05 | AC | 94 ms
39,788 KB |
testcase_06 | AC | 92 ms
39,476 KB |
testcase_07 | AC | 112 ms
40,028 KB |
testcase_08 | AC | 404 ms
59,468 KB |
testcase_09 | AC | 1,192 ms
59,700 KB |
testcase_10 | AC | 898 ms
59,592 KB |
testcase_11 | AC | 446 ms
59,388 KB |
testcase_12 | AC | 435 ms
51,020 KB |
testcase_13 | AC | 411 ms
50,528 KB |
testcase_14 | AC | 430 ms
50,976 KB |
ソースコード
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(); } }