結果

問題 No.711 競技レーティング単調増加
ユーザー 37zigen37zigen
提出日時 2018-06-30 01:31:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,117 ms / 2,000 ms
コード長 1,819 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 80,312 KB
実行使用メモリ 75,660 KB
最終ジャッジ日時 2024-07-01 00:45:30
合計ジャッジ時間 29,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,092 KB
testcase_01 AC 138 ms
54,312 KB
testcase_02 AC 138 ms
54,440 KB
testcase_03 AC 147 ms
53,976 KB
testcase_04 AC 149 ms
54,076 KB
testcase_05 AC 149 ms
54,108 KB
testcase_06 AC 149 ms
54,048 KB
testcase_07 AC 144 ms
54,244 KB
testcase_08 AC 147 ms
54,368 KB
testcase_09 AC 148 ms
54,360 KB
testcase_10 AC 149 ms
54,188 KB
testcase_11 AC 150 ms
54,900 KB
testcase_12 AC 145 ms
56,224 KB
testcase_13 AC 145 ms
54,200 KB
testcase_14 AC 146 ms
53,940 KB
testcase_15 AC 150 ms
54,220 KB
testcase_16 AC 152 ms
54,252 KB
testcase_17 AC 151 ms
54,244 KB
testcase_18 AC 979 ms
69,308 KB
testcase_19 AC 964 ms
70,932 KB
testcase_20 AC 993 ms
70,808 KB
testcase_21 AC 938 ms
68,872 KB
testcase_22 AC 960 ms
69,628 KB
testcase_23 AC 1,078 ms
71,416 KB
testcase_24 AC 1,037 ms
71,720 KB
testcase_25 AC 920 ms
69,516 KB
testcase_26 AC 962 ms
71,184 KB
testcase_27 AC 946 ms
69,688 KB
testcase_28 AC 759 ms
62,848 KB
testcase_29 AC 811 ms
63,872 KB
testcase_30 AC 954 ms
75,372 KB
testcase_31 AC 1,057 ms
73,600 KB
testcase_32 AC 1,117 ms
73,736 KB
testcase_33 AC 882 ms
73,612 KB
testcase_34 AC 940 ms
71,640 KB
testcase_35 AC 983 ms
75,660 KB
testcase_36 AC 720 ms
63,700 KB
testcase_37 AC 949 ms
72,776 KB
testcase_38 AC 824 ms
72,808 KB
testcase_39 AC 568 ms
59,360 KB
testcase_40 AC 709 ms
60,148 KB
testcase_41 AC 134 ms
54,348 KB
testcase_42 AC 610 ms
63,028 KB
testcase_43 AC 685 ms
67,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		int N = sc.nextInt();
		int p = 0;
		int[] A = new int[N];
		for (int i = 0; i < N; ++i) {
			int a = sc.nextInt() - i;
			if (a <= 0)
				continue;
			A[p++] = a;
		}
		A = Arrays.copyOf(A, p);
		A = shrink(A);
		int[] dp = new int[N + 1];
		Arrays.fill(dp, Integer.MAX_VALUE);
		for (int i = 0; i < A.length; ++i) {
			// int idx = Arrays.binarySearch(dp, A[i]);
			// if (idx >= 0) {
			// dp[idx + 1] = A[i];
			// } else {
			// idx = -(idx + 1);
			// dp[idx] = A[i];
			// }
			dp[gt(dp, A[i])] = A[i];
		}
		int ans = 0;
		for (int i = 0; i < dp.length; ++i) {
			if (dp[i] >= Integer.MAX_VALUE)
				continue;
			ans = Math.max(ans, i + 1);
		}
		System.out.println(N - ans);

	}

	int[] shrink(int[] a) {
		int n = a.length;
		int[] ret = new int[n];
		int[][] x = new int[n][2];
		for (int i = 0; i < n; ++i) {
			x[i][0] = i;
			x[i][1] = a[i];
		}
		Arrays.sort(x, new Comparator<int[]>() {
			@Override
			public int compare(int[] o1, int[] o2) {
				return Long.compare(o1[1], o2[1]);
			}
		});
		int p = 0;
		for (int i = 0; i < n; ++i) {
			ret[(int) x[i][0]] = p;
			if (i + 1 < n && x[i][1] != x[i + 1][1])
				++p;
		}
		return ret;
	}

	int gt(int[] A, int key) {
		int ok = A.length;
		int ng = -1;
		while (ok - ng > 1) {
			int m = (ok + ng) / 2;
			if (A[m] <= key) {
				ng = m;
			} else {
				ok = m;
			}
		}
		return ng + 1;
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0