結果

問題 No.497 入れ子の箱
ユーザー tentententen
提出日時 2021-12-06 11:53:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 2,784 bytes
コンパイル時間 3,195 ms
コンパイル使用メモリ 78,868 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-07-07 08:53:47
合計ジャッジ時間 6,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,528 KB
testcase_01 AC 45 ms
50,456 KB
testcase_02 AC 45 ms
50,548 KB
testcase_03 AC 86 ms
51,744 KB
testcase_04 AC 100 ms
52,680 KB
testcase_05 AC 100 ms
53,016 KB
testcase_06 AC 101 ms
52,632 KB
testcase_07 AC 98 ms
52,596 KB
testcase_08 AC 88 ms
52,184 KB
testcase_09 AC 98 ms
52,432 KB
testcase_10 AC 97 ms
52,504 KB
testcase_11 AC 95 ms
52,112 KB
testcase_12 AC 110 ms
53,240 KB
testcase_13 AC 113 ms
52,996 KB
testcase_14 AC 115 ms
52,880 KB
testcase_15 AC 105 ms
52,840 KB
testcase_16 AC 116 ms
53,048 KB
testcase_17 AC 114 ms
53,124 KB
testcase_18 AC 100 ms
52,316 KB
testcase_19 AC 99 ms
52,400 KB
testcase_20 AC 95 ms
52,060 KB
testcase_21 AC 98 ms
52,864 KB
testcase_22 AC 97 ms
52,416 KB
testcase_23 AC 100 ms
52,752 KB
testcase_24 AC 113 ms
52,840 KB
testcase_25 AC 47 ms
50,532 KB
testcase_26 AC 51 ms
50,576 KB
testcase_27 AC 96 ms
52,244 KB
testcase_28 AC 99 ms
54,352 KB
testcase_29 AC 111 ms
52,652 KB
testcase_30 AC 113 ms
52,652 KB
testcase_31 AC 116 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<ArrayList<Box>> boxes = new ArrayList<>();
        boxes.add(new ArrayList<>());
        boxes.get(0).add(new Box(Integer.MAX_VALUE, Integer.MAX_VALUE, Integer.MAX_VALUE));
        Box[] tmp = new Box[n];
        for (int i = 0; i < n; i++) {
            tmp[i] = new Box(sc.nextInt(), sc.nextInt(), sc.nextInt());
        }
        Arrays.sort(tmp);
        for (Box b : tmp) {
            for (int j = boxes.size() - 1; j >= 0; j--) {
                boolean ng = true;
                for (Box x : boxes.get(j)) {
                    if (x.isSmaller(b)) {
                        ng = false;
                        break;
                    }
                }
                if (!ng) {
                    if (j == boxes.size() - 1) {
                        boxes.add(new ArrayList<>());
                    }
                    boxes.get(j + 1).add(b);
                    break;
                }
            }
        }
        System.out.println(boxes.size() - 1);
    }
    
    static class Box implements Comparable<Box> {
        int big;
        int middle;
        int small;
        
        public Box(int[] arr) {
            Arrays.sort(arr);
            small = arr[0];
            middle = arr[1];
            big = arr[2];
        }
        
        public Box(int a, int b, int c) {
            this(new int[]{a, b, c});
        }
        
        public int compareTo(Box another) {
            if (big == another.big) {
                if (middle == another.middle) {
                    return another.small - small;
                } else {
                    return another.middle - middle;
                }
            } else {
                return another.big - big;
            }
        }
        
        public boolean isSmaller(Box another) {
            return big > another.big && middle > another.middle && small > another.small;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0