結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | ks2m |
提出日時 | 2021-08-13 22:42:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,543 bytes |
コンパイル時間 | 5,085 ms |
コンパイル使用メモリ | 78,024 KB |
実行使用メモリ | 102,988 KB |
最終ジャッジ日時 | 2024-10-03 20:52:28 |
合計ジャッジ時間 | 48,319 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
37,044 KB |
testcase_01 | AC | 45 ms
36,552 KB |
testcase_02 | AC | 45 ms
37,068 KB |
testcase_03 | AC | 49 ms
37,452 KB |
testcase_04 | WA | - |
testcase_05 | AC | 51 ms
37,228 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | AC | 795 ms
99,068 KB |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 676 ms
97,092 KB |
testcase_23 | AC | 737 ms
96,828 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 711 ms
96,456 KB |
testcase_27 | AC | 736 ms
96,792 KB |
testcase_28 | AC | 766 ms
98,856 KB |
testcase_29 | AC | 852 ms
102,048 KB |
testcase_30 | WA | - |
testcase_31 | AC | 905 ms
102,988 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 862 ms
101,168 KB |
testcase_35 | AC | 783 ms
95,144 KB |
testcase_36 | AC | 835 ms
101,560 KB |
testcase_37 | AC | 757 ms
98,712 KB |
testcase_38 | AC | 694 ms
92,316 KB |
testcase_39 | WA | - |
testcase_40 | AC | 760 ms
93,280 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | WA | - |
testcase_46 | TLE | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 543 ms
80,388 KB |
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 n, n2; 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(" "); n = Integer.parseInt(sa[2]); n2 = n * 2; list = new ArrayList<>(n2); for (int i = 0; i < n2; i++) { list.add(new ArrayList<>()); } for (int i = 0; i < n; i++) { sa = br.readLine().split(" "); Hen h = new Hen(); h.i = i; h.x = Integer.parseInt(sa[0]) - 1; h.y = Integer.parseInt(sa[1]) - 1 + n; list.get(h.x).add(h); list.get(h.y).add(h); } br.close(); for (int i = 0; i < n2; i++) { if (dfs(i, null, new LinkedHashSet<>())) { return; } } System.out.println(-1); } static boolean dfs(int x, Hen p, LinkedHashSet<Hen> his) { for (Hen h : list.get(x)) { if (h != p) { if (his.contains(h)) { System.out.println(his.size()); StringBuilder sb = new StringBuilder(); for (Hen h2 : his) { sb.append(h2.i % n + 1).append(' '); } sb.deleteCharAt(sb.length() - 1); System.out.println(sb.toString()); return true; } his.add(h); int nx = h.x; if (nx == x) { nx = h.y; } if (dfs(nx, h, his)) { return true; } his.remove(h); } } return false; } static class Hen { int x, y, i; boolean used; } }