結果
問題 | No.110 しましまピラミッド |
ユーザー | takeya_okino |
提出日時 | 2017-06-15 19:13:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 126 ms / 5,000 ms |
コード長 | 1,973 bytes |
コンパイル時間 | 1,822 ms |
コンパイル使用メモリ | 77,336 KB |
実行使用メモリ | 41,936 KB |
最終ジャッジ日時 | 2024-06-10 03:13:28 |
合計ジャッジ時間 | 5,927 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
40,964 KB |
testcase_01 | AC | 99 ms
40,520 KB |
testcase_02 | AC | 105 ms
40,912 KB |
testcase_03 | AC | 106 ms
40,232 KB |
testcase_04 | AC | 98 ms
40,152 KB |
testcase_05 | AC | 113 ms
41,428 KB |
testcase_06 | AC | 116 ms
41,864 KB |
testcase_07 | AC | 104 ms
40,516 KB |
testcase_08 | AC | 103 ms
40,488 KB |
testcase_09 | AC | 100 ms
40,424 KB |
testcase_10 | AC | 109 ms
40,832 KB |
testcase_11 | AC | 120 ms
41,936 KB |
testcase_12 | AC | 112 ms
41,736 KB |
testcase_13 | AC | 107 ms
40,304 KB |
testcase_14 | AC | 126 ms
41,808 KB |
testcase_15 | AC | 108 ms
41,280 KB |
testcase_16 | AC | 100 ms
40,292 KB |
testcase_17 | AC | 99 ms
40,444 KB |
testcase_18 | AC | 99 ms
40,424 KB |
testcase_19 | AC | 112 ms
41,168 KB |
testcase_20 | AC | 97 ms
40,048 KB |
testcase_21 | AC | 115 ms
41,360 KB |
testcase_22 | AC | 109 ms
41,504 KB |
testcase_23 | AC | 107 ms
41,616 KB |
testcase_24 | AC | 96 ms
39,696 KB |
testcase_25 | AC | 102 ms
40,300 KB |
testcase_26 | AC | 116 ms
41,580 KB |
testcase_27 | AC | 104 ms
40,480 KB |
testcase_28 | AC | 99 ms
40,516 KB |
testcase_29 | AC | 113 ms
41,360 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int Nw = sc.nextInt(); int[] w = new int[Nw]; for(int i = 0; i < Nw; i++) { w[i] = sc.nextInt(); } int Nb = sc.nextInt(); int[] b = new int[Nb]; for(int i = 0; i < Nb; i++) { b[i] = sc.nextInt(); } Arrays.sort(w); Arrays.sort(b); int[] lowW = new int[21]; int[] lowB = new int[21]; lowW[0] = -1; lowW[1] = -1; lowB[0] = -1; lowB[1] = -1; for(int i = 2; i < 21; i++) { boolean flg = true; for(int j = Nw - 1; j >= 0; j--) { if(w[j] < i) { lowW[i] = j; flg = false; break; } } if(flg) lowW[i] = -1; flg = true; for(int j = Nb - 1; j >= 0; j--) { if(b[j] < i) { lowB[i] = j; flg = false; break; } } if(flg) lowB[i] = -1; } // dpw[i]はw[i]を一番下とした時のピラミッドの高さの最大値 // dpb[i]はb[i]を一番下とした時のピラミッドの高さの最大値 int[] dpw = new int[Nw]; int[] dpb = new int[Nb]; dpw[0] = 1; dpb[0] = 1; if(lowB[w[0]] >= 0) dpw[0] = 2; if(lowW[b[0]] >= 0) dpb[0] = 2; int indexw = 1; int indexb = 1; for(int i = 0; i < Nw + Nb - 2; i++) { if(indexw < Nw) { if(lowB[w[indexw]] == -1) { dpw[indexw] = 1; indexw++; } else if(lowB[w[indexw]] < indexb) { dpw[indexw] = 1 + dpb[lowB[w[indexw]]]; indexw++; } } if(indexb < Nb) { if(lowW[b[indexb]] == -1) { dpb[indexb] = 1; indexb++; } else if(lowW[b[indexb]] < indexw) { dpb[indexb] = 1 + dpw[lowW[b[indexb]]]; indexb++; } } } int ans = Math.max(dpw[Nw - 1], dpb[Nb - 1]); System.out.println(ans); } }