結果

問題 No.1605 Matrix Shape
ユーザー ks2mks2m
提出日時 2021-07-16 22:53:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,918 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 79,140 KB
実行使用メモリ 117,652 KB
最終ジャッジ日時 2024-07-06 10:25:39
合計ジャッジ時間 20,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,624 KB
testcase_01 RE -
testcase_02 AC 122 ms
54,104 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 123 ms
54,120 KB
testcase_08 RE -
testcase_09 AC 133 ms
54,296 KB
testcase_10 AC 129 ms
54,136 KB
testcase_11 AC 119 ms
53,984 KB
testcase_12 RE -
testcase_13 AC 134 ms
54,556 KB
testcase_14 AC 126 ms
54,016 KB
testcase_15 AC 121 ms
53,944 KB
testcase_16 AC 122 ms
54,036 KB
testcase_17 AC 122 ms
54,244 KB
testcase_18 AC 121 ms
54,180 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 788 ms
91,408 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 894 ms
102,204 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 674 ms
83,968 KB
testcase_28 RE -
testcase_29 AC 672 ms
84,180 KB
testcase_30 RE -
testcase_31 AC 823 ms
90,712 KB
testcase_32 RE -
testcase_33 WA -
testcase_34 RE -
testcase_35 AC 739 ms
89,968 KB
testcase_36 AC 569 ms
82,580 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;
		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) {
			int ans = 0;
			for (int i = 0; i < m; i++) {
				if (!list.get(i).isEmpty()) {
					ans++;
				}
			}
			System.out.println(ans);
			throw new Exception();
//		} else if (s == -1) {
//			int ans = 0;
//			for (int i = 0; i < m; i++) {
//				if (out[i] > 0) {
//					ans++;
//				}
//			}
//			System.out.println(ans);
//			throw new Exception();
//		} else if (t == -1) {
//			int ans = 0;
//			for (int i = 0; i < m; i++) {
//				if (in[i] > 0) {
//					ans++;
//				}
//			}
//			System.out.println(ans);
//			throw new Exception();
		} else {
			System.out.println(1);
		}
	}

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