結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | ks2m |
提出日時 | 2021-08-13 22:52:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,654 bytes |
コンパイル時間 | 2,196 ms |
コンパイル使用メモリ | 78,652 KB |
実行使用メモリ | 103,780 KB |
最終ジャッジ日時 | 2024-10-03 21:34:35 |
合計ジャッジ時間 | 40,018 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
50,356 KB |
testcase_01 | AC | 49 ms
50,416 KB |
testcase_02 | AC | 47 ms
50,300 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 856 ms
100,992 KB |
testcase_09 | AC | 788 ms
98,096 KB |
testcase_10 | AC | 769 ms
95,448 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 868 ms
100,236 KB |
testcase_15 | AC | 824 ms
101,616 KB |
testcase_16 | AC | 719 ms
96,408 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 841 ms
95,728 KB |
testcase_23 | AC | 773 ms
97,252 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 675 ms
97,948 KB |
testcase_27 | AC | 832 ms
97,152 KB |
testcase_28 | AC | 732 ms
97,924 KB |
testcase_29 | AC | 800 ms
99,248 KB |
testcase_30 | AC | 692 ms
95,436 KB |
testcase_31 | AC | 853 ms
103,780 KB |
testcase_32 | AC | 622 ms
91,864 KB |
testcase_33 | WA | - |
testcase_34 | AC | 838 ms
102,220 KB |
testcase_35 | AC | 775 ms
93,748 KB |
testcase_36 | AC | 860 ms
102,276 KB |
testcase_37 | AC | 815 ms
103,040 KB |
testcase_38 | AC | 787 ms
95,052 KB |
testcase_39 | WA | - |
testcase_40 | AC | 676 ms
91,880 KB |
testcase_41 | WA | - |
testcase_42 | AC | 674 ms
93,720 KB |
testcase_43 | AC | 48 ms
50,392 KB |
testcase_44 | AC | 74 ms
56,472 KB |
testcase_45 | WA | - |
testcase_46 | TLE | - |
testcase_47 | WA | - |
testcase_48 | AC | 1,190 ms
83,084 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.LinkedHashSet; import java.util.List; public class Main { static int h, w, n, hw; static List<List<Hen>> list; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); h = Integer.parseInt(sa[0]); w = Integer.parseInt(sa[1]); n = Integer.parseInt(sa[2]); hw = h + w; list = new ArrayList<>(hw); for (int i = 0; i < hw; i++) { list.add(new ArrayList<>()); } Hen[] arr = new Hen[n]; for (int i = 0; i < n; i++) { sa = br.readLine().split(" "); Hen o = new Hen(); o.i = i; o.x = Integer.parseInt(sa[0]) - 1; o.y = Integer.parseInt(sa[1]) - 1 + h; list.get(o.x).add(o); list.get(o.y).add(o); arr[i] = o; } br.close(); for (int i = 0; i < n; i++) { if (dfs(arr[i].x, null, new LinkedHashSet<>())) { return; } } System.out.println(-1); } static boolean dfs(int x, Hen p, LinkedHashSet<Hen> his) { for (Hen o : list.get(x)) { if (o != p) { if (his.contains(o)) { System.out.println(his.size()); StringBuilder sb = new StringBuilder(); for (Hen o2 : his) { sb.append(o2.i + 1).append(' '); } sb.deleteCharAt(sb.length() - 1); System.out.println(sb.toString()); return true; } his.add(o); int nx = o.x; if (nx == x) { nx = o.y; } if (dfs(nx, o, his)) { return true; } his.remove(o); } } return false; } static class Hen { int x, y, i; boolean used; } }