結果

問題 No.497 入れ子の箱
ユーザー 37zigen37zigen
提出日時 2017-03-24 23:13:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 240 ms / 5,000 ms
コード長 2,292 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 83,736 KB
実行使用メモリ 57,508 KB
最終ジャッジ日時 2024-07-05 23:49:38
合計ジャッジ時間 10,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,076 KB
testcase_01 AC 117 ms
53,076 KB
testcase_02 AC 130 ms
53,800 KB
testcase_03 AC 221 ms
56,864 KB
testcase_04 AC 227 ms
57,132 KB
testcase_05 AC 228 ms
56,976 KB
testcase_06 AC 224 ms
56,952 KB
testcase_07 AC 225 ms
57,200 KB
testcase_08 AC 224 ms
57,200 KB
testcase_09 AC 211 ms
57,084 KB
testcase_10 AC 226 ms
57,368 KB
testcase_11 AC 227 ms
57,156 KB
testcase_12 AC 234 ms
57,140 KB
testcase_13 AC 236 ms
57,216 KB
testcase_14 AC 238 ms
57,044 KB
testcase_15 AC 237 ms
56,964 KB
testcase_16 AC 229 ms
57,396 KB
testcase_17 AC 235 ms
57,480 KB
testcase_18 AC 231 ms
57,180 KB
testcase_19 AC 231 ms
57,140 KB
testcase_20 AC 232 ms
57,012 KB
testcase_21 AC 225 ms
57,060 KB
testcase_22 AC 230 ms
57,320 KB
testcase_23 AC 201 ms
57,000 KB
testcase_24 AC 216 ms
57,328 KB
testcase_25 AC 129 ms
54,260 KB
testcase_26 AC 131 ms
54,232 KB
testcase_27 AC 240 ms
57,264 KB
testcase_28 AC 236 ms
57,376 KB
testcase_29 AC 234 ms
57,400 KB
testcase_30 AC 231 ms
57,216 KB
testcase_31 AC 237 ms
57,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
import java.util.TreeSet;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	boolean check(TreeSet<int[]> C, int[] S) {
		int[] Sl = C.lower(S);
		if (Sl != null && Sl[1] < S[1]) {
			return true;
		} else {
			return false;
		}
	}

	@SuppressWarnings("unchecked")
	void solve(int N, int[][] S) {
		TreeSet<int[]>[] C = new TreeSet[N];
		for (int i = 0; i < N; ++i) {
			C[i] = new TreeSet<>(new Comparator<int[]>() {
				@Override
				public int compare(int[] o1, int[] o2) {
					if (o1[0] != o2[0]) {
						return Integer.compare(o1[0], o2[0]);
					} else {
						return -Integer.compare(o1[1], o2[1]);
					}
				}
			});
		}
		C[0].add(S[0]);
		int maxLen = 1;
		for (int i = 1; i < N; ++i) {
			int left = -1;
			int right = maxLen;
			while (right - left > 1) {
				int middle = (right + left) / 2;
				if (check(C[middle], S[i])) {
					left = middle;
				} else {
					right = middle;
				}
			}

			if (left + 1 == maxLen) {
				C[left + 1].add(S[i]);
				++maxLen;
				continue;
			} else {
				int[] tmp = C[left + 1].floor(S[i]);
				if (tmp != null && tmp[1] == S[i][1])
					continue;
				tmp = C[left + 1].higher(S[i]);
				while (tmp != null && S[i][1] <= tmp[1]) {
					C[left + 1].remove(tmp);
					tmp = C[left + 1].higher(S[i]);
				}
				C[left + 1].add(S[i]);
			}
		}
		System.out.println(maxLen);
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] S = new int[n][3];
		for (int i = 0; i < n; ++i) {
			int[] a = new int[3];
			a[0] = sc.nextInt();
			a[1] = sc.nextInt();
			a[2] = sc.nextInt();
			Arrays.sort(a);
			S[i][0] = a[0];
			S[i][1] = a[1];
			S[i][2] = a[2];
		}
		Arrays.sort(S, new Comparator<int[]>() {
			@Override
			public int compare(int[] o1, int[] o2) {
				if (o1[0] != o2[0])
					return Integer.compare(o1[0], o2[0]);
				else if (o1[1] != o2[1]) {
					return -Integer.compare(o1[1], o2[1]);
				} else {
					return -Integer.compare(o1[2], o2[2]);
				}
			}
		});

		int[][] tmp = new int[n][2];
		for (int i = 0; i < n; ++i) {
			tmp[i][0] = S[i][1];
			tmp[i][1] = S[i][2];
		}
		solve(n, tmp);

	}

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