結果
問題 | No.497 入れ子の箱 |
ユーザー | 37zigen |
提出日時 | 2017-03-24 23:36:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,259 bytes |
コンパイル時間 | 3,557 ms |
コンパイル使用メモリ | 79,384 KB |
実行使用メモリ | 57,688 KB |
最終ジャッジ日時 | 2024-07-06 00:49:58 |
合計ジャッジ時間 | 10,560 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
53,864 KB |
testcase_01 | AC | 134 ms
54,176 KB |
testcase_02 | AC | 131 ms
54,216 KB |
testcase_03 | AC | 237 ms
57,012 KB |
testcase_04 | AC | 243 ms
57,308 KB |
testcase_05 | AC | 240 ms
57,304 KB |
testcase_06 | AC | 242 ms
57,312 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 215 ms
57,412 KB |
testcase_24 | AC | 228 ms
57,240 KB |
testcase_25 | AC | 132 ms
54,160 KB |
testcase_26 | AC | 134 ms
54,208 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 241 ms
57,072 KB |
testcase_31 | AC | 238 ms
57,340 KB |
ソースコード
import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; import java.util.TreeSet; class Main { public static void main(String[] args) { new Main().run(); } void run() { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[][] S = new int[N][3]; for (int i = 0; i < N; ++i) { int[] a = new int[3]; for (int j = 0; j < 3; ++j) { a[j] = sc.nextInt(); } Arrays.sort(a); for (int j = 0; j < 3; ++j) { S[i][j] = a[j]; } } Arrays.sort(S, new Comparator<int[]>() { @Override public int compare(int[] arg0, int[] arg1) { if (arg0[0] != arg1[0]) return Integer.compare(arg0[0], arg1[0]); else if (arg0[1] != arg1[0]) return Integer.compare(arg0[1], arg1[1]); else return Integer.compare(arg0[2], arg1[2]); } }); int[] dp = new int[N]; Arrays.fill(dp, 1); for (int i = 1; i < N; ++i) { for (int j = 0; j < i; ++j) { if (S[i][0] > S[j][1] && S[i][1] > S[j][1] && S[i][2] > S[j][2]) { dp[i] = Math.max(dp[i], dp[j] + 1); } } } int ans = 0; for (int i = 0; i < N; ++i) { ans = Math.max(ans, dp[i]); } System.out.println(ans); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }