結果

問題 No.110 しましまピラミッド
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 09:08:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 3,347 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 37,616 KB
最終ジャッジ日時 2024-06-10 03:11:17
合計ジャッジ時間 4,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,420 KB
testcase_01 AC 50 ms
37,184 KB
testcase_02 AC 47 ms
36,964 KB
testcase_03 AC 47 ms
37,400 KB
testcase_04 AC 46 ms
37,232 KB
testcase_05 AC 48 ms
37,472 KB
testcase_06 AC 47 ms
37,480 KB
testcase_07 AC 46 ms
37,472 KB
testcase_08 AC 46 ms
37,616 KB
testcase_09 AC 46 ms
37,184 KB
testcase_10 AC 48 ms
36,960 KB
testcase_11 AC 47 ms
37,420 KB
testcase_12 AC 46 ms
37,440 KB
testcase_13 AC 47 ms
37,432 KB
testcase_14 AC 47 ms
37,432 KB
testcase_15 AC 45 ms
37,276 KB
testcase_16 AC 46 ms
37,504 KB
testcase_17 AC 46 ms
37,140 KB
testcase_18 AC 47 ms
37,496 KB
testcase_19 AC 48 ms
37,588 KB
testcase_20 AC 48 ms
37,072 KB
testcase_21 AC 48 ms
37,452 KB
testcase_22 AC 48 ms
37,408 KB
testcase_23 AC 47 ms
37,264 KB
testcase_24 AC 47 ms
37,544 KB
testcase_25 AC 48 ms
37,260 KB
testcase_26 AC 48 ms
37,396 KB
testcase_27 AC 47 ms
37,476 KB
testcase_28 AC 48 ms
37,500 KB
testcase_29 AC 49 ms
37,192 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