結果

問題 No.497 入れ子の箱
ユーザー rpy3cpprpy3cpp
提出日時 2017-03-25 18:31:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,225 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-06 06:09:53
合計ジャッジ時間 54,741 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 35 ms
10,496 KB
testcase_02 AC 33 ms
10,368 KB
testcase_03 AC 2,164 ms
11,264 KB
testcase_04 AC 2,177 ms
11,264 KB
testcase_05 AC 2,225 ms
11,520 KB
testcase_06 AC 2,181 ms
11,520 KB
testcase_07 AC 2,098 ms
11,264 KB
testcase_08 AC 2,093 ms
11,392 KB
testcase_09 AC 2,103 ms
11,264 KB
testcase_10 AC 2,099 ms
11,136 KB
testcase_11 AC 2,110 ms
11,264 KB
testcase_12 AC 1,854 ms
11,136 KB
testcase_13 AC 1,857 ms
11,136 KB
testcase_14 AC 1,838 ms
11,392 KB
testcase_15 AC 1,858 ms
11,136 KB
testcase_16 AC 1,873 ms
11,136 KB
testcase_17 AC 1,869 ms
11,136 KB
testcase_18 AC 2,105 ms
11,392 KB
testcase_19 AC 2,113 ms
11,520 KB
testcase_20 AC 2,113 ms
11,520 KB
testcase_21 AC 2,115 ms
11,520 KB
testcase_22 AC 2,114 ms
11,136 KB
testcase_23 AC 1,321 ms
11,008 KB
testcase_24 AC 1,327 ms
11,264 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 1,940 ms
11,136 KB
testcase_28 AC 1,954 ms
11,264 KB
testcase_29 AC 1,942 ms
11,008 KB
testcase_30 AC 1,695 ms
11,264 KB
testcase_31 AC 1,682 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    xyz = []
    for _ in range(N):
        x, y, z = map(int, input().split())
        xyz.append((x, y, z))
        xyz.append((x, z, y))
        xyz.append((y, x, z))
        xyz.append((y, z, x))
        xyz.append((z, x, y))
        xyz.append((z, y, x))
    return N, xyz

def solve(N, xyz):
    xyz.append((0, 0, 0))
    xyz.sort()
    dp = [0] * (N * 6 + 1)
    for idx, (x, y, z) in enumerate(xyz):
        tmp = 0
        for idx2, (xx, yy, zz) in enumerate(xyz[:idx]):
            if xx < x and yy < y and zz < z:
                if tmp < dp[idx2]:
                    tmp = dp[idx2]
        dp[idx] = tmp + 1
    return max(dp) - 1

N, xyz = read_data()
print(solve(N, xyz))
0