結果

問題 No.497 入れ子の箱
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-11 12:49:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 5,000 ms
コード長 1,370 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-07-18 01:57:57
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 38 ms
53,760 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 143 ms
77,568 KB
testcase_04 AC 246 ms
78,080 KB
testcase_05 AC 253 ms
77,952 KB
testcase_06 AC 246 ms
78,080 KB
testcase_07 AC 234 ms
78,336 KB
testcase_08 AC 249 ms
78,696 KB
testcase_09 AC 238 ms
78,464 KB
testcase_10 AC 247 ms
78,336 KB
testcase_11 AC 238 ms
78,336 KB
testcase_12 AC 226 ms
78,848 KB
testcase_13 AC 233 ms
79,232 KB
testcase_14 AC 232 ms
78,464 KB
testcase_15 AC 225 ms
78,716 KB
testcase_16 AC 231 ms
78,004 KB
testcase_17 AC 236 ms
78,464 KB
testcase_18 AC 265 ms
79,104 KB
testcase_19 AC 286 ms
78,208 KB
testcase_20 AC 264 ms
78,780 KB
testcase_21 AC 264 ms
78,464 KB
testcase_22 AC 259 ms
78,464 KB
testcase_23 AC 45 ms
62,336 KB
testcase_24 AC 44 ms
62,788 KB
testcase_25 AC 36 ms
54,144 KB
testcase_26 AC 37 ms
53,888 KB
testcase_27 AC 229 ms
78,080 KB
testcase_28 AC 229 ms
78,080 KB
testcase_29 AC 234 ms
78,000 KB
testcase_30 AC 142 ms
77,400 KB
testcase_31 AC 158 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

def main():

    n = int(input())
    XYZ = []
    X = []
    for i in range(n):
        temp = list(map(int, input().split()))
        temp.sort()
        x, y, z = temp
        XYZ.append((x, y, z))
        X.append(x)

    X = sorted(list(set(X)))
    d = {}
    for i, x in enumerate(X):
        d[x] = i

    N = len(d)
    YZ = [[] for i in range(N)]
    for x, y, z in XYZ:
        YZ[d[x]].append((y, z))

    from collections import defaultdict
    dp = defaultdict(lambda:1)
    mod =10**9
    for y, z in YZ[0]:
        dp[y*mod+z] = 1
        dp[z*mod+y] = 1
    for i in range(1, N):
        nx = defaultdict(lambda:1)
        for k, v in dp.items():
            nx[k] = max(nx[k], v)
        for ny, nz in YZ[i]:
            nk = ny*mod+nz
            nx[nk] = 1
            nk = nz*mod+ny
            nx[nk] = 1
            for k, v in dp.items():
                y, z = divmod(k, mod)
                if y < ny and z < nz:
                    nk = ny*mod+nz
                    nx[nk] = max(nx[nk], dp[k]+1)
                if y < nz and z < ny:
                    nk = nz*mod+ny
                    nx[nk] = max(nx[nk], dp[k]+1)

        dp = nx
    ans = 1
    for k, v in dp.items():
        ans = max(ans, v)
    print(ans)

if __name__ == '__main__':
    main()
0