結果

問題 No.1605 Matrix Shape
ユーザー ks2mks2m
提出日時 2021-07-16 22:44:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,571 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 78,500 KB
実行使用メモリ 111,924 KB
最終ジャッジ日時 2024-07-06 10:15:53
合計ジャッジ時間 16,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
63,632 KB
testcase_01 AC 130 ms
63,896 KB
testcase_02 AC 117 ms
63,416 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 135 ms
63,616 KB
testcase_06 AC 134 ms
63,904 KB
testcase_07 AC 118 ms
63,836 KB
testcase_08 AC 146 ms
63,808 KB
testcase_09 AC 108 ms
63,708 KB
testcase_10 AC 126 ms
63,916 KB
testcase_11 AC 115 ms
63,848 KB
testcase_12 AC 134 ms
64,040 KB
testcase_13 AC 122 ms
64,076 KB
testcase_14 AC 121 ms
63,688 KB
testcase_15 AC 102 ms
63,668 KB
testcase_16 AC 102 ms
63,812 KB
testcase_17 AC 106 ms
63,600 KB
testcase_18 AC 109 ms
63,824 KB
testcase_19 AC 651 ms
106,052 KB
testcase_20 AC 647 ms
100,856 KB
testcase_21 AC 629 ms
103,104 KB
testcase_22 WA -
testcase_23 AC 733 ms
111,776 KB
testcase_24 AC 795 ms
110,628 KB
testcase_25 AC 551 ms
93,820 KB
testcase_26 AC 545 ms
94,360 KB
testcase_27 AC 663 ms
95,832 KB
testcase_28 WA -
testcase_29 AC 547 ms
94,176 KB
testcase_30 AC 632 ms
100,716 KB
testcase_31 AC 637 ms
100,676 KB
testcase_32 AC 612 ms
98,132 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 587 ms
105,224 KB
testcase_36 AC 431 ms
94,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class Main {
	static int n;
	static List<Set<Hen>> list;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		n = Integer.parseInt(br.readLine());
		int m = 200000;
		list = new ArrayList<>(m);
		for (int i = 0; i < m; i++) {
			list.add(new HashSet<>());
		}
		int[] in = new int[m];
		int[] out = new int[m];
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			Hen h = new Hen();
			h.a = Integer.parseInt(sa[0]) - 1;
			h.b = Integer.parseInt(sa[1]) - 1;
			if (h.a != h.b) {
				list.get(h.a).add(h);
				out[h.a]++;
				in[h.b]++;
			}
		}
		br.close();

		int s = -1;
		int t = -1;
		boolean even = false;
		for (int i = 0; i < m; i++) {
			if (in[i] != out[i]) {
				if (Math.abs(in[i] - out[i]) > 1) {
					System.out.println(0);
					return;
				}
				if (in[i] + 1 == out[i]) {
					if (s == -1) {
						s = i;
					} else {
						System.out.println(0);
						return;
					}
				} else {
					if (t == -1) {
						t = i;
					} else {
						System.out.println(0);
						return;
					}
				}
			}
		}
		if (s == -1 && t == -1) {
			even = true;
		}
		if (even) {
			int ans = 0;
			for (int i = 0; i < m; i++) {
				if (!list.get(i).isEmpty()) {
					ans++;
				}
			}
			System.out.println(ans);
		} else {
			System.out.println(1);
		}
	}

	static class Hen {
		int a, b;
	}
}
0