結果

問題 No.1647 Travel in Mitaru city 2
ユーザー ks2mks2m
提出日時 2021-08-13 23:12:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,034 bytes
コンパイル時間 3,135 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 96,680 KB
最終ジャッジ日時 2024-10-03 22:47:42
合計ジャッジ時間 45,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,980 KB
testcase_01 AC 51 ms
36,548 KB
testcase_02 AC 51 ms
36,956 KB
testcase_03 AC 56 ms
37,208 KB
testcase_04 AC 111 ms
39,412 KB
testcase_05 AC 55 ms
37,192 KB
testcase_06 AC 60 ms
37,160 KB
testcase_07 AC 124 ms
40,668 KB
testcase_08 AC 908 ms
88,660 KB
testcase_09 AC 871 ms
84,992 KB
testcase_10 AC 919 ms
86,592 KB
testcase_11 AC 684 ms
72,968 KB
testcase_12 WA -
testcase_13 AC 895 ms
91,124 KB
testcase_14 AC 940 ms
87,556 KB
testcase_15 AC 966 ms
88,184 KB
testcase_16 AC 924 ms
86,696 KB
testcase_17 AC 871 ms
85,748 KB
testcase_18 AC 920 ms
85,796 KB
testcase_19 AC 898 ms
85,256 KB
testcase_20 AC 990 ms
89,940 KB
testcase_21 AC 1,049 ms
89,052 KB
testcase_22 AC 1,060 ms
93,032 KB
testcase_23 AC 1,003 ms
87,032 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 956 ms
87,052 KB
testcase_27 AC 1,001 ms
85,684 KB
testcase_28 AC 933 ms
89,528 KB
testcase_29 AC 918 ms
90,596 KB
testcase_30 AC 857 ms
90,492 KB
testcase_31 AC 1,128 ms
96,680 KB
testcase_32 AC 774 ms
84,156 KB
testcase_33 AC 818 ms
82,244 KB
testcase_34 AC 923 ms
90,060 KB
testcase_35 AC 985 ms
90,448 KB
testcase_36 AC 928 ms
89,948 KB
testcase_37 AC 1,080 ms
94,500 KB
testcase_38 AC 992 ms
86,244 KB
testcase_39 WA -
testcase_40 AC 1,057 ms
85,884 KB
testcase_41 AC 970 ms
79,448 KB
testcase_42 AC 969 ms
83,800 KB
testcase_43 AC 55 ms
37,132 KB
testcase_44 AC 85 ms
45,520 KB
testcase_45 AC 520 ms
65,632 KB
testcase_46 AC 741 ms
70,236 KB
testcase_47 AC 677 ms
71,148 KB
testcase_48 AC 726 ms
67,812 KB
testcase_49 AC 642 ms
71,164 KB
testcase_50 AC 527 ms
65,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 (Hen o : arr) {
			if (!o.used) {
				if (dfs(o.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)) {
			o.used = true;
			if (o != p) {
				if (his.contains(o)) {
					Hen[] arr = his.toArray(new Hen[0]);
					int s = 0;
					for (int i = 0; i < arr.length; i++) {
						if (arr[i] == o) {
							s = i;
							break;
						}
					}
					System.out.println(arr.length - s);
					StringBuilder sb = new StringBuilder();
					boolean flg = false;
					if (o.x == arr[s + 1].x) {
						s++;
						flg = true;
					}
					for (int i = s; i < arr.length; i++) {
						sb.append(arr[i].i + 1).append(' ');
					}
					if (flg) {
						sb.append(o.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;
	}
}
0