結果
| 問題 | No.497 入れ子の箱 |
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2019-07-14 18:57:14 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 5,000 ms |
| コード長 | 1,243 bytes |
| 記録 | |
| コンパイル時間 | 242 ms |
| コンパイル使用メモリ | 40,168 KB |
| 最終ジャッジ日時 | 2026-02-22 03:54:30 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
// 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;
}
bal4u