結果

問題 No.497 入れ子の箱
ユーザー rpy3cpprpy3cpp
提出日時 2017-03-25 18:46:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,696 ms / 5,000 ms
コード長 735 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-06 06:12:20
合計ジャッジ時間 41,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 1,657 ms
11,264 KB
testcase_04 AC 1,693 ms
11,392 KB
testcase_05 AC 1,689 ms
11,520 KB
testcase_06 AC 1,696 ms
11,392 KB
testcase_07 AC 1,636 ms
11,392 KB
testcase_08 AC 1,632 ms
11,392 KB
testcase_09 AC 1,657 ms
11,392 KB
testcase_10 AC 1,648 ms
11,392 KB
testcase_11 AC 1,668 ms
11,392 KB
testcase_12 AC 1,457 ms
11,264 KB
testcase_13 AC 1,458 ms
11,264 KB
testcase_14 AC 1,422 ms
11,136 KB
testcase_15 AC 1,433 ms
11,264 KB
testcase_16 AC 1,456 ms
11,136 KB
testcase_17 AC 1,453 ms
11,136 KB
testcase_18 AC 1,626 ms
11,264 KB
testcase_19 AC 1,631 ms
11,264 KB
testcase_20 AC 1,633 ms
11,264 KB
testcase_21 AC 1,644 ms
11,264 KB
testcase_22 AC 1,658 ms
11,264 KB
testcase_23 AC 938 ms
11,136 KB
testcase_24 AC 965 ms
11,136 KB
testcase_25 AC 25 ms
10,624 KB
testcase_26 AC 24 ms
10,624 KB
testcase_27 AC 1,507 ms
11,264 KB
testcase_28 AC 1,517 ms
11,264 KB
testcase_29 AC 1,517 ms
11,264 KB
testcase_30 AC 1,276 ms
11,136 KB
testcase_31 AC 1,304 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 in range(idx):
            xx, yy, zz = xyz[idx2]
            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