結果
問題 | No.1194 Replace |
ユーザー | tenten |
提出日時 | 2023-02-01 16:22:20 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,599 bytes |
コンパイル時間 | 2,806 ms |
コンパイル使用メモリ | 85,868 KB |
実行使用メモリ | 147,936 KB |
最終ジャッジ日時 | 2024-07-01 11:21:17 |
合計ジャッジ時間 | 36,376 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1,442 ms
138,700 KB |
testcase_08 | AC | 1,918 ms
143,592 KB |
testcase_09 | AC | 1,897 ms
147,936 KB |
testcase_10 | AC | 1,702 ms
145,264 KB |
testcase_11 | AC | 1,654 ms
139,448 KB |
testcase_12 | AC | 1,639 ms
139,440 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 54 ms
50,492 KB |
testcase_21 | AC | 54 ms
50,308 KB |
testcase_22 | AC | 55 ms
50,444 KB |
testcase_23 | WA | - |
testcase_24 | AC | 252 ms
59,884 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 158 ms
54,912 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static HashMap<Integer, ArrayList<Integer>> graph = new HashMap<>(); static HashMap<Integer, Integer> visited = new HashMap<>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); for (int i = 0; i < m; i++) { int left = sc.nextInt(); int right = sc.nextInt(); if (!graph.containsKey(left)) { graph.put(left, new ArrayList<>()); } graph.get(left).add(right); } long ans = (n + 1L) * n / 2; for (int x : graph.keySet()) { int value = getValue(x, new HashSet<>()); ans += value - x; } System.out.println(ans); } static int getValue(int x, HashSet<Integer> used) { if (used.contains(x)) { return 0; } if (!visited.containsKey(x)) { used.add(x); int value = x; if (graph.containsKey(x)) { for (int y : graph.get(x)) { value = Math.max(value, getValue(y, used)); } } visited.put(x, value); used.remove(x); } return visited.get(x); } } 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(); } }