結果
問題 | No.2000 Distanced Characters |
ユーザー |
![]() |
提出日時 | 2023-02-28 16:40:09 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 |
ソースコード
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(); } }