結果

問題 No.497 入れ子の箱
ユーザー bal4ubal4u
提出日時 2019-07-14 18:45:34
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 1,166 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 12:55:30
合計ジャッジ時間 1,123 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 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 4 ms
5,376 KB
testcase_28 AC 4 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:8:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
    8 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:14:24: note: in expansion of macro 'gc'
   14 |         int n = 0, c = gc();
      |                        ^~

ソースコード

diff #

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

#include <stdio.h>
#include <stdlib.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];

int cmp(const void *a, const void *b) {
	int t;
	t = ((T *)a)->x - ((T *)b)->x; if (t) return t;
	t = ((T *)a)->y - ((T *)b)->y; if (t) return t;
	return ((T *)a)->z - ((T *)b)->z;
}

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, N, sizeof(T), cmp);
	
	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