結果
| 問題 | No.497 入れ子の箱 |
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2019-07-14 18:45:34 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 5,000 ms |
| コード長 | 1,166 bytes |
| 記録 | |
| コンパイル時間 | 120 ms |
| コンパイル使用メモリ | 30,848 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 12:57:06 |
| 合計ジャッジ時間 | 1,004 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
コンパイルメッセージ
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();
| ^~
ソースコード
// 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;
}
bal4u