結果

問題 No.497 入れ子の箱
ユーザー tentententen
提出日時 2020-12-24 16:41:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 257 ms / 5,000 ms
コード長 1,344 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 77,368 KB
実行使用メモリ 57,524 KB
最終ジャッジ日時 2024-09-21 16:58:44
合計ジャッジ時間 10,329 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,816 KB
testcase_01 AC 119 ms
53,800 KB
testcase_02 AC 122 ms
54,352 KB
testcase_03 AC 225 ms
57,092 KB
testcase_04 AC 241 ms
57,372 KB
testcase_05 AC 257 ms
57,352 KB
testcase_06 AC 242 ms
57,276 KB
testcase_07 AC 247 ms
56,876 KB
testcase_08 AC 242 ms
57,124 KB
testcase_09 AC 249 ms
57,172 KB
testcase_10 AC 240 ms
57,180 KB
testcase_11 AC 251 ms
57,520 KB
testcase_12 AC 245 ms
57,300 KB
testcase_13 AC 242 ms
56,984 KB
testcase_14 AC 241 ms
57,124 KB
testcase_15 AC 243 ms
57,072 KB
testcase_16 AC 240 ms
57,332 KB
testcase_17 AC 232 ms
57,236 KB
testcase_18 AC 244 ms
57,212 KB
testcase_19 AC 242 ms
57,524 KB
testcase_20 AC 244 ms
57,336 KB
testcase_21 AC 253 ms
57,228 KB
testcase_22 AC 248 ms
57,116 KB
testcase_23 AC 194 ms
57,248 KB
testcase_24 AC 216 ms
57,080 KB
testcase_25 AC 107 ms
52,728 KB
testcase_26 AC 116 ms
54,128 KB
testcase_27 AC 236 ms
57,104 KB
testcase_28 AC 232 ms
57,164 KB
testcase_29 AC 226 ms
57,088 KB
testcase_30 AC 212 ms
57,052 KB
testcase_31 AC 234 ms
57,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        Box[] boxes = new Box[n];
        for (int i = 0; i < n; i++) {
            boxes[i] = new Box(sc.nextInt(), sc.nextInt(), sc.nextInt());
        }
        Arrays.sort(boxes);
        int[] counts = new int[n];
        int max = 0;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < i; j++) {
                if (boxes[j].bigger(boxes[i])) {
                    counts[i] = Math.max(counts[i], counts[j] + 1);
                    max = Math.max(max, counts[i]);
                }
            }
        }
        System.out.println(max + 1);
    }
    
    static class Box implements Comparable<Box> {
        int[] arr = new int[3];
        
        public Box(int x, int y, int z) {
            arr[0] = x;
            arr[1] = y;
            arr[2] = z;
            Arrays.sort(arr);
        }
        
        public int compareTo(Box another) {
            return arr[0] - another.arr[0];
        }
        
        public boolean bigger(Box another) {
            for (int i = 0; i < 3; i++) {
                if (arr[i] >= another.arr[i]) {
                    return false;
                }
            }
            return true;
        }
    }
}
0