結果

問題 No.365 ジェンガソート
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 23:30:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,252 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 77,476 KB
実行使用メモリ 56,488 KB
最終ジャッジ日時 2024-05-05 14:25:15
合計ジャッジ時間 9,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,944 KB
testcase_01 AC 52 ms
36,720 KB
testcase_02 AC 53 ms
36,736 KB
testcase_03 AC 54 ms
36,856 KB
testcase_04 AC 53 ms
37,128 KB
testcase_05 AC 52 ms
37,084 KB
testcase_06 AC 53 ms
36,724 KB
testcase_07 AC 53 ms
36,948 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 53 ms
37,144 KB
testcase_15 AC 51 ms
37,148 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 105 ms
39,088 KB
testcase_19 AC 219 ms
45,416 KB
testcase_20 AC 137 ms
41,572 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 250 ms
45,452 KB
testcase_37 AC 252 ms
45,420 KB
testcase_38 WA -
testcase_39 AC 230 ms
45,468 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

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

    void solve() throws IOException {
        int n = ni();
        int[] a = nia(n);

        int[] l = new int[n];
        Arrays.fill(l, 1 << 30);

        for (int i = 0; i < n; i++) {
            int idx = lowerBound(l, a[i]);
            l[idx] = a[i];
        }

        int cnt = 0;
        for (int i = 0; i < n; i++) {
            if (l[i] != 1 << 30) cnt++;
        }

        out.println(n - cnt);
    }

    int lowerBound(int[] a, long x) {
        int high = a.length;
        int low = 0;
        while (high > low) {
            int mid = (high + low) / 2;
            if (a[mid] < x) {
                low = mid + 1;
            } else {
                high = mid;
            }
        }
        return low;
    }

    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;
    }

    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