結果

問題 No.497 入れ子の箱
ユーザー 0w10w1
提出日時 2017-04-10 18:37:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-18 05:42:12
合計ジャッジ時間 4,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,040 KB
testcase_01 AC 45 ms
55,168 KB
testcase_02 AC 42 ms
54,656 KB
testcase_03 AC 85 ms
77,048 KB
testcase_04 AC 92 ms
76,800 KB
testcase_05 AC 87 ms
77,080 KB
testcase_06 AC 86 ms
76,928 KB
testcase_07 AC 83 ms
76,608 KB
testcase_08 AC 82 ms
76,672 KB
testcase_09 AC 83 ms
76,800 KB
testcase_10 AC 88 ms
76,512 KB
testcase_11 AC 84 ms
76,612 KB
testcase_12 AC 98 ms
76,800 KB
testcase_13 AC 91 ms
76,588 KB
testcase_14 AC 96 ms
76,916 KB
testcase_15 AC 105 ms
76,796 KB
testcase_16 AC 93 ms
76,672 KB
testcase_17 AC 94 ms
77,184 KB
testcase_18 AC 93 ms
77,124 KB
testcase_19 AC 92 ms
76,904 KB
testcase_20 AC 94 ms
76,672 KB
testcase_21 AC 94 ms
77,044 KB
testcase_22 AC 93 ms
76,924 KB
testcase_23 AC 68 ms
70,656 KB
testcase_24 AC 81 ms
70,912 KB
testcase_25 AC 42 ms
55,168 KB
testcase_26 AC 41 ms
54,656 KB
testcase_27 AC 95 ms
76,696 KB
testcase_28 AC 91 ms
77,184 KB
testcase_29 AC 95 ms
77,204 KB
testcase_30 AC 81 ms
76,672 KB
testcase_31 AC 84 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from functools import cmp_to_key
N = int( input() )
X = []
Y = []
Z = []
for i in range( N ):
  x, y, z = sorted( list( map( int, input().split() ) ) )
  X.append( x )
  Y.append( y )
  Z.append( z )
ord = sorted( list( i for i in range( N ) ), key = cmp_to_key( lambda x, y: 0 if X[ x ] == X[ y ] else ( X[ x ] - X[ y ] ) // abs( X[ x ] - X[ y ] ) ) )
dp = defaultdict( int )
for i in range( N ):
  best = 0
  for j in range( i ):
    a, b = ord[ i ], ord[ j ]
    if X[ b ] < X[ a ] and Y[ b ] < Y[ a ] and Z[ b ] < Z[ a ]:
      best = max( best, dp[ j ] )
  dp[ i ] = best + 1
ans = 0
for key in dp:
  ans = max( ans, dp[ key ] )
print( ans )
0