結果

問題 No.483 マッチ並べ
ユーザー 37zigen37zigen
提出日時 2017-02-11 04:45:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,459 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 42,208 KB
最終ジャッジ日時 2024-06-09 08:07:33
合計ジャッジ時間 12,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,556 KB
testcase_01 AC 133 ms
41,288 KB
testcase_02 AC 134 ms
41,176 KB
testcase_03 AC 141 ms
41,240 KB
testcase_04 AC 139 ms
41,196 KB
testcase_05 AC 140 ms
41,272 KB
testcase_06 AC 136 ms
41,304 KB
testcase_07 AC 136 ms
41,456 KB
testcase_08 AC 143 ms
41,616 KB
testcase_09 AC 137 ms
41,428 KB
testcase_10 AC 152 ms
41,424 KB
testcase_11 AC 134 ms
41,312 KB
testcase_12 AC 138 ms
41,296 KB
testcase_13 AC 140 ms
41,768 KB
testcase_14 AC 141 ms
41,236 KB
testcase_15 AC 147 ms
41,632 KB
testcase_16 AC 144 ms
41,648 KB
testcase_17 AC 139 ms
41,168 KB
testcase_18 AC 130 ms
41,564 KB
testcase_19 AC 139 ms
41,716 KB
testcase_20 AC 132 ms
40,980 KB
testcase_21 AC 134 ms
41,304 KB
testcase_22 AC 135 ms
41,212 KB
testcase_23 AC 141 ms
41,436 KB
testcase_24 AC 138 ms
41,480 KB
testcase_25 AC 141 ms
41,264 KB
testcase_26 AC 151 ms
41,524 KB
testcase_27 AC 167 ms
41,668 KB
testcase_28 AC 170 ms
42,056 KB
testcase_29 AC 158 ms
41,792 KB
testcase_30 AC 154 ms
41,516 KB
testcase_31 AC 177 ms
41,820 KB
testcase_32 AC 177 ms
41,784 KB
testcase_33 AC 147 ms
41,552 KB
testcase_34 AC 143 ms
41,632 KB
testcase_35 AC 143 ms
41,808 KB
testcase_36 AC 142 ms
41,592 KB
testcase_37 AC 147 ms
41,624 KB
testcase_38 AC 162 ms
41,948 KB
testcase_39 AC 163 ms
42,040 KB
testcase_40 AC 159 ms
42,208 KB
testcase_41 AC 156 ms
41,856 KB
testcase_42 AC 158 ms
41,844 KB
testcase_43 AC 186 ms
42,048 KB
testcase_44 AC 142 ms
41,276 KB
testcase_45 AC 144 ms
41,524 KB
testcase_46 AC 142 ms
41,524 KB
testcase_47 AC 150 ms
41,420 KB
testcase_48 AC 160 ms
41,632 KB
testcase_49 AC 147 ms
41,624 KB
testcase_50 AC 158 ms
41,844 KB
testcase_51 AC 154 ms
41,516 KB
testcase_52 AC 158 ms
41,704 KB
testcase_53 AC 144 ms
41,564 KB
testcase_54 AC 137 ms
41,520 KB
testcase_55 AC 137 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static int N;
	static int[] r0, c0, r1, c1;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		r0 = new int[N];
		c0 = new int[N];
		r1 = new int[N];
		c1 = new int[N];
		DJSet ds = new DJSet(100 * 100);
		for (int i = 0; i < N; ++i) {
			r0[i] = sc.nextInt() - 1;
			c0[i] = sc.nextInt() - 1;
			r1[i] = sc.nextInt() - 1;
			c1[i] = sc.nextInt() - 1;
			ds.setUnion(r0[i] + c0[i] * 100, r1[i] + c1[i] * 100);
		}
		for (int i = 0; i < 100; ++i) {
			for (int j = 0; j < 100; ++j) {
				if (ds.edgeNumber[ds.root(i + j * 100)] >= -ds.upper[ds.root(i + j * 100)] + 1) {
					System.out.println("NO");
					return;
				}
			}
		}
		System.out.println("YES");
	}

	static class DJSet {
		int n;
		int[] upper;
		int[] edgeNumber;

		public DJSet(int n) {
			this.n = n;
			upper = new int[n];
			edgeNumber = new int[n];
			Arrays.fill(upper, -1);
		}

		boolean equiv(int x, int y) {
			return root(x) == root(y);
		}

		int root(int x) {
			return upper[x] < 0 ? x : (upper[x] = root(upper[x]));
		}

		void setUnion(int x, int y) {
			x = root(x);
			y = root(y);

			if (x != y) {
				if (upper[x] < upper[y]) {
					int tmp = x;
					x = y;
					y = tmp;
				}
				upper[y] += upper[x];
				upper[x] = y;
				edgeNumber[y] += edgeNumber[x];
			}
			++edgeNumber[y];
		}

	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0