結果

問題 No.110 しましまピラミッド
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 09:08:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 3,347 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 50,136 KB
最終ジャッジ日時 2023-08-30 03:57:59
合計ジャッジ時間 4,974 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,124 KB
testcase_01 AC 46 ms
49,612 KB
testcase_02 AC 48 ms
49,672 KB
testcase_03 AC 47 ms
49,640 KB
testcase_04 AC 47 ms
49,612 KB
testcase_05 AC 46 ms
49,580 KB
testcase_06 AC 48 ms
49,864 KB
testcase_07 AC 47 ms
49,608 KB
testcase_08 AC 47 ms
50,136 KB
testcase_09 AC 47 ms
49,840 KB
testcase_10 AC 46 ms
49,724 KB
testcase_11 AC 46 ms
50,012 KB
testcase_12 AC 47 ms
49,688 KB
testcase_13 AC 47 ms
49,732 KB
testcase_14 AC 47 ms
49,672 KB
testcase_15 AC 46 ms
49,592 KB
testcase_16 AC 46 ms
49,628 KB
testcase_17 AC 48 ms
49,688 KB
testcase_18 AC 46 ms
49,592 KB
testcase_19 AC 46 ms
49,672 KB
testcase_20 AC 48 ms
49,608 KB
testcase_21 AC 47 ms
49,720 KB
testcase_22 AC 47 ms
49,712 KB
testcase_23 AC 47 ms
49,596 KB
testcase_24 AC 46 ms
49,604 KB
testcase_25 AC 45 ms
49,632 KB
testcase_26 AC 46 ms
49,816 KB
testcase_27 AC 47 ms
49,684 KB
testcase_28 AC 47 ms
49,868 KB
testcase_29 AC 46 ms
49,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int nw = ni();
        int[] w = nia(nw);
        int nb = ni();
        int[] b = nia(nb);

        Arrays.sort(w);
        Arrays.sort(b);

        int ans = 0;

        int widx = nw - 1;
        int bidx = nb - 1;
        boolean flg = true;
        int size = Integer.MAX_VALUE;
        int tmp = 0;
        while (true) {
            if (flg) {
                while (widx >= 0 && w[widx] >= size) {
                    widx--;
                }
                if (widx < 0) {
                    break;
                }
                tmp++;
                size = w[widx];
                widx--;
            } else {
                while (bidx >= 0 && b[bidx] >= size) {
                    bidx--;
                }
                if (bidx < 0) {
                    break;
                }
                tmp++;
                size = b[bidx];
                bidx--;
            }
            flg = !flg;
        }
        ans = Math.max(ans, tmp);

        widx = nw - 1;
        bidx = nb - 1;
        flg = false;
        size = Integer.MAX_VALUE;
        tmp = 0;
        while (true) {
            if (flg) {
                while (widx >= 0 && w[widx] >= size) {
                    widx--;
                }
                if (widx < 0) {
                    break;
                }
                tmp++;
                size = w[widx];
                widx--;
            } else {
                while (bidx >= 0 && b[bidx] >= size) {
                    bidx--;
                }
                if (bidx < 0) {
                    break;
                }
                tmp++;
                size = b[bidx];
                bidx--;
            }
            flg = !flg;
        }
        ans = Math.max(ans, tmp);

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0