結果

問題 No.497 入れ子の箱
ユーザー bal4ubal4u
提出日時 2019-07-14 18:57:14
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 1,243 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 13:03:09
合計ジャッジ時間 1,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'in':
main.c:7:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
    7 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:13:24: note: in expansion of macro 'gc'
   13 |         int n = 0, c = gc();
      |                        ^~

ソースコード

diff #

// yukicoder: No.497 入れ子の箱
// 2019.7.14 bal4u

#include <stdio.h>

#if 1
#define gc() getchar_unlocked()
#else
#define gc() getchar()
#endif

int in() {   // 非負整数の入力
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

#define MAX 1005
typedef struct { int x, y, z; } T;
T a[MAX+5]; int N;
int dp[MAX+5];

void Qsort(T *a, int l, int r) {
	int i,j, m;	T t;
	
	i = l, j = r, m = a[(l+r) >> 1].x;
	while (1) {
		while (a[i].x < m) i++;
		while (m < a[j].x) j--;
		if (i >= j)	break;
		t = a[i], a[i] = a[j], a[j] = t;
		i++, j--;
	}
	if (l+1 < i) Qsort(a, l, i-1);
	if (j+1 < r) Qsort(a, j+1, r);
}

int main()
{
	int i, j, ans;

	N = in(); for (i = 0; i < N; i++) {
		int t, x = in(), y = in(), z = in();
		if (x > y) t = x, x = y, y = t;
		if (y > z) {
			t = y, y = z, z = t;
			if (x > y) t = x, x = y, y = t;
		}
		a[i].x = x, a[i].y = y, a[i].z = z;
	}
	Qsort(a, 0, N-1);
	
	ans = 0;
	if (a[0].x != a[N-1].x) {
		for (i = 0; i < N; i++) for (j = 0; j < i; j++) {
			if (a[i].x > a[j].x && a[i].y > a[j].y && a[i].z > a[j].z) 
				if (dp[j]+1 > dp[i]) dp[i] = dp[j]+1;
		}
		ans = 0; for (i = 0; i < N; i++) if (dp[i] > ans) ans = dp[i];
	}
	printf("%d\n", ans+1);
	return 0;
}
0