結果

問題 No.497 入れ子の箱
ユーザー htensaihtensai
提出日時 2020-01-08 13:08:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 2,285 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 59,376 KB
最終ジャッジ日時 2023-08-15 00:29:49
合計ジャッジ時間 8,273 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,492 KB
testcase_01 AC 42 ms
49,500 KB
testcase_02 AC 42 ms
49,588 KB
testcase_03 AC 153 ms
58,736 KB
testcase_04 AC 155 ms
59,012 KB
testcase_05 AC 174 ms
59,012 KB
testcase_06 AC 174 ms
58,780 KB
testcase_07 AC 166 ms
58,296 KB
testcase_08 AC 169 ms
59,184 KB
testcase_09 AC 163 ms
57,856 KB
testcase_10 AC 166 ms
58,628 KB
testcase_11 AC 165 ms
59,080 KB
testcase_12 AC 189 ms
58,844 KB
testcase_13 AC 178 ms
59,276 KB
testcase_14 AC 170 ms
58,492 KB
testcase_15 AC 156 ms
58,740 KB
testcase_16 AC 169 ms
58,356 KB
testcase_17 AC 166 ms
58,284 KB
testcase_18 AC 155 ms
59,124 KB
testcase_19 AC 161 ms
59,376 KB
testcase_20 AC 158 ms
58,644 KB
testcase_21 AC 148 ms
58,176 KB
testcase_22 AC 153 ms
58,492 KB
testcase_23 AC 110 ms
57,936 KB
testcase_24 AC 126 ms
58,308 KB
testcase_25 AC 43 ms
49,692 KB
testcase_26 AC 43 ms
49,408 KB
testcase_27 AC 163 ms
58,708 KB
testcase_28 AC 171 ms
58,420 KB
testcase_29 AC 167 ms
59,080 KB
testcase_30 AC 125 ms
57,976 KB
testcase_31 AC 149 ms
58,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static int[][] dp;
    static Box[] boxes;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        dp = new int[n][n + 1];
        boxes = new Box[n + 1];
        for (int i = 0; i < n; i++) {
            boxes[i] = new Box(br.readLine());
            Arrays.fill(dp[i], -1);
        }
        boxes[n] = new Box(new int[]{Integer.MAX_VALUE, Integer.MAX_VALUE, Integer.MAX_VALUE});
        Arrays.sort(boxes);
        System.out.println(dfw(n - 1, n));
    }
    
    static int dfw(int idx, int bidx) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][bidx] != -1) {
            return dp[idx][bidx];
        }
        dp[idx][bidx] = dfw(idx - 1, bidx);
        if (boxes[bidx].smaller(boxes[idx])) {
            dp[idx][bidx] = Math.max(dp[idx][bidx], dfw(idx - 1, idx) + 1);
        }
        return dp[idx][bidx];
    }
    
    static class Box implements Comparable<Box> {
        int[] arr = new int[3];
        
        public Box(int[] arr) {
            this.arr = arr;
            Arrays.sort(arr);
        }
        
        public Box(String line) {
            String[] lines = line.split(" ", 3);
            for (int i = 0; i < 3; i++) {
                arr[i] = Integer.parseInt(lines[i]);
            }
            Arrays.sort(arr);
        }
        
        public int compareTo(Box another) {
            for (int i = 0; i <= 2; i++) {
                if (arr[i] != another.arr[i]) {
                    return arr[i] - another.arr[i];
                }
            }
            return 0;
        }
        
        public boolean equals(Object o) {
            Box another = (Box)o;
            for (int i = 0; i < 3; i++) {
                if (arr[i] != another.arr[i]) {
                    return false;
                }
            }
            return true;
        }
        
        public boolean smaller(Box another) {
            for (int i = 0; i < 3; i++) {
                if (arr[i] <= another.arr[i]) {
                    return false;
                }
            }
            return true;
        }
    }
}
0