結果

問題 No.497 入れ子の箱
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-03 22:17:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 1,429 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 78,100 KB
実行使用メモリ 45,380 KB
最終ジャッジ日時 2024-10-05 12:45:55
合計ジャッジ時間 9,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,344 KB
testcase_01 AC 111 ms
41,708 KB
testcase_02 AC 117 ms
41,488 KB
testcase_03 AC 234 ms
45,236 KB
testcase_04 AC 231 ms
44,724 KB
testcase_05 AC 237 ms
44,916 KB
testcase_06 AC 230 ms
44,904 KB
testcase_07 AC 230 ms
45,264 KB
testcase_08 AC 231 ms
45,380 KB
testcase_09 AC 231 ms
45,112 KB
testcase_10 AC 230 ms
45,004 KB
testcase_11 AC 230 ms
45,336 KB
testcase_12 AC 232 ms
45,128 KB
testcase_13 AC 236 ms
45,292 KB
testcase_14 AC 234 ms
44,620 KB
testcase_15 AC 230 ms
44,532 KB
testcase_16 AC 235 ms
45,024 KB
testcase_17 AC 232 ms
44,720 KB
testcase_18 AC 236 ms
45,152 KB
testcase_19 AC 240 ms
44,984 KB
testcase_20 AC 244 ms
44,600 KB
testcase_21 AC 249 ms
44,656 KB
testcase_22 AC 231 ms
44,820 KB
testcase_23 AC 203 ms
44,696 KB
testcase_24 AC 214 ms
44,936 KB
testcase_25 AC 115 ms
41,212 KB
testcase_26 AC 105 ms
41,128 KB
testcase_27 AC 230 ms
45,112 KB
testcase_28 AC 228 ms
44,624 KB
testcase_29 AC 230 ms
44,436 KB
testcase_30 AC 221 ms
44,468 KB
testcase_31 AC 223 ms
45,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int[] x = new int[N];
    int[] y = new int[N];
    int[] z = new int[N];
    for(int i = 0; i < N; i++) {
      int a = sc.nextInt();
      int b = sc.nextInt();
      int c = sc.nextInt();
      int[] arr = {a, b, c};
      Arrays.sort(arr);
      x[i] = arr[0];
      y[i] = arr[1];
      z[i] = arr[2];
    }
    int[] bigN = new int[N];
    for(int i = 0; i < N; i++) {
      for(int j = 0; j < N; j++) {
        if(x[i] < x[j] && y[i] < y[j] && z[i] < z[j]) bigN[i]++;
      }
    }
    int[] c = bigN.clone();
    Arrays.sort(c);
    int[] ord = new int[N];
    boolean[] used = new boolean[N];
    for(int i = 0; i < N; i++) {
      for(int j = 0; j < N; j++) {
        if(!used[j] && bigN[j] == c[i]) {
          used[j] = true;
          ord[i] = j;
          break;
        }
      }
    }
    // dp[i]は箱ord[i]を最も内部にしたときの入れ子の最大値
    int[] dp = new int[N];
    dp[0] = 1;
    for(int i = 1; i < N; i++) {
      int a = 0;
      for(int j = 0; j < i; j++) {
        if(x[ord[i]] < x[ord[j]] && y[ord[i]] < y[ord[j]] && z[ord[i]] < z[ord[j]]) a = Math.max(a, dp[j]);
      }
      dp[i] = a + 1;
    }
    int ans = 0;
    for(int i = 0; i < N; i++) {
      ans = Math.max(ans, dp[i]);
    }
    System.out.println(ans);
  }
}
0