結果

問題 No.497 入れ子の箱
ユーザー htensaihtensai
提出日時 2020-01-08 12:55:43
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,378 bytes
コンパイル時間 2,679 ms
コンパイル使用メモリ 78,928 KB
実行使用メモリ 107,444 KB
最終ジャッジ日時 2024-11-23 02:38:19
合計ジャッジ時間 65,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
42,440 KB
testcase_01 AC 52 ms
79,116 KB
testcase_02 AC 51 ms
42,168 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 331 ms
65,564 KB
testcase_13 AC 387 ms
68,096 KB
testcase_14 AC 388 ms
68,056 KB
testcase_15 AC 384 ms
67,980 KB
testcase_16 AC 401 ms
68,000 KB
testcase_17 AC 393 ms
68,616 KB
testcase_18 AC 406 ms
60,656 KB
testcase_19 AC 452 ms
60,908 KB
testcase_20 AC 373 ms
61,216 KB
testcase_21 AC 382 ms
61,088 KB
testcase_22 AC 405 ms
60,736 KB
testcase_23 AC 271 ms
65,120 KB
testcase_24 AC 321 ms
65,168 KB
testcase_25 AC 51 ms
37,016 KB
testcase_26 AC 51 ms
37,104 KB
testcase_27 AC 384 ms
68,480 KB
testcase_28 AC 438 ms
68,592 KB
testcase_29 AC 400 ms
68,640 KB
testcase_30 AC 331 ms
64,972 KB
testcase_31 AC 322 ms
107,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static HashMap<Box, Integer>[] 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 HashMap[n];
        boxes = new Box[n];
        for (int i = 0; i < n; i++) {
            boxes[i] = new Box(br.readLine());
            dp[i] = new HashMap<Box, Integer>();
        }
        Arrays.sort(boxes);
        System.out.println(dfw(n - 1, new Box(new int[]{Integer.MAX_VALUE, Integer.MAX_VALUE, Integer.MAX_VALUE})));
    }
    
    static int dfw(int idx, Box box) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx].containsKey(box)) {
            return dp[idx].get(box);
        }
        int ans = dfw(idx - 1, box);
        if (box.smaller(boxes[idx])) {
            int tmp = dfw(idx - 1, boxes[idx]) + 1;
            if (ans < tmp) {
                ans = tmp;
                box = boxes[idx];
            }
        }
        dp[idx].put(box, ans);
        return ans;
    }
    
    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