結果

問題 No.497 入れ子の箱
ユーザー 37zigen37zigen
提出日時 2017-03-24 23:38:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 1,259 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 80,228 KB
実行使用メモリ 57,576 KB
最終ジャッジ日時 2024-07-06 01:22:23
合計ジャッジ時間 10,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,064 KB
testcase_01 AC 138 ms
54,044 KB
testcase_02 AC 139 ms
54,100 KB
testcase_03 AC 244 ms
57,216 KB
testcase_04 AC 250 ms
57,216 KB
testcase_05 AC 252 ms
57,196 KB
testcase_06 AC 246 ms
57,356 KB
testcase_07 AC 248 ms
57,260 KB
testcase_08 AC 251 ms
57,096 KB
testcase_09 AC 246 ms
57,004 KB
testcase_10 AC 252 ms
57,444 KB
testcase_11 AC 253 ms
57,396 KB
testcase_12 AC 258 ms
56,996 KB
testcase_13 AC 250 ms
57,092 KB
testcase_14 AC 251 ms
57,192 KB
testcase_15 AC 254 ms
57,084 KB
testcase_16 AC 255 ms
57,076 KB
testcase_17 AC 253 ms
57,068 KB
testcase_18 AC 246 ms
57,004 KB
testcase_19 AC 251 ms
57,044 KB
testcase_20 AC 252 ms
57,324 KB
testcase_21 AC 245 ms
57,576 KB
testcase_22 AC 251 ms
57,504 KB
testcase_23 AC 224 ms
56,976 KB
testcase_24 AC 239 ms
57,164 KB
testcase_25 AC 134 ms
54,156 KB
testcase_26 AC 138 ms
54,232 KB
testcase_27 AC 248 ms
57,268 KB
testcase_28 AC 244 ms
57,392 KB
testcase_29 AC 249 ms
57,260 KB
testcase_30 AC 244 ms
57,356 KB
testcase_31 AC 227 ms
57,068 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();
	}

	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];
			for (int j = 0; j < 3; ++j) {
				a[j] = sc.nextInt();
			}
			Arrays.sort(a);
			for (int j = 0; j < 3; ++j) {
				S[i][j] = a[j];
			}
		}

		Arrays.sort(S, new Comparator<int[]>() {
			@Override
			public int compare(int[] arg0, int[] arg1) {
				if (arg0[0] != arg1[0])
					return Integer.compare(arg0[0], arg1[0]);
				else if (arg0[1] != arg1[0])
					return Integer.compare(arg0[1], arg1[1]);
				else
					return Integer.compare(arg0[2], arg1[2]);
			}
		});

		int[] dp = new int[N];
		Arrays.fill(dp, 1);
		for (int i = 1; i < N; ++i) {
			for (int j = 0; j < i; ++j) {
				if (S[i][0] > S[j][0] && S[i][1] > S[j][1] && S[i][2] > S[j][2]) {
					dp[i] = Math.max(dp[i], dp[j] + 1);
				}
			}
		}
		int ans = 0;
		for (int i = 0; i < N; ++i) {
			ans = Math.max(ans, dp[i]);
		}
		System.out.println(ans);
	}

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