結果

問題 No.497 入れ子の箱
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-11 12:46:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,270 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 79,240 KB
最終ジャッジ日時 2024-07-18 01:52:22
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,448 KB
testcase_01 AC 37 ms
54,632 KB
testcase_02 AC 39 ms
55,064 KB
testcase_03 AC 147 ms
77,628 KB
testcase_04 AC 249 ms
78,328 KB
testcase_05 AC 262 ms
78,028 KB
testcase_06 AC 253 ms
78,152 KB
testcase_07 AC 242 ms
78,524 KB
testcase_08 AC 244 ms
78,156 KB
testcase_09 AC 246 ms
78,620 KB
testcase_10 AC 248 ms
78,420 KB
testcase_11 AC 245 ms
78,468 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 268 ms
78,528 KB
testcase_21 AC 270 ms
78,552 KB
testcase_22 AC 277 ms
78,436 KB
testcase_23 AC 46 ms
64,348 KB
testcase_24 AC 44 ms
63,328 KB
testcase_25 AC 37 ms
55,432 KB
testcase_26 AC 37 ms
54,280 KB
testcase_27 AC 235 ms
78,536 KB
testcase_28 AC 237 ms
78,372 KB
testcase_29 AC 245 ms
78,216 KB
testcase_30 AC 55 ms
65,804 KB
testcase_31 AC 173 ms
77,800 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]:
            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