結果

問題 No.711 競技レーティング単調増加
ユーザー 37zigen37zigen
提出日時 2018-06-30 00:54:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,627 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 79,860 KB
実行使用メモリ 75,084 KB
最終ジャッジ日時 2024-07-01 00:41:12
合計ジャッジ時間 28,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
54,216 KB
testcase_02 WA -
testcase_03 AC 147 ms
53,964 KB
testcase_04 WA -
testcase_05 AC 147 ms
53,860 KB
testcase_06 AC 148 ms
54,116 KB
testcase_07 AC 146 ms
54,120 KB
testcase_08 AC 148 ms
54,476 KB
testcase_09 AC 147 ms
54,220 KB
testcase_10 AC 148 ms
54,116 KB
testcase_11 WA -
testcase_12 AC 147 ms
54,216 KB
testcase_13 AC 144 ms
54,216 KB
testcase_14 AC 144 ms
54,300 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 145 ms
54,392 KB
testcase_18 AC 953 ms
71,432 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 932 ms
68,756 KB
testcase_22 WA -
testcase_23 AC 1,016 ms
71,528 KB
testcase_24 AC 1,015 ms
71,068 KB
testcase_25 AC 918 ms
71,496 KB
testcase_26 AC 937 ms
71,228 KB
testcase_27 AC 916 ms
68,216 KB
testcase_28 AC 713 ms
62,996 KB
testcase_29 AC 783 ms
63,756 KB
testcase_30 AC 950 ms
75,084 KB
testcase_31 AC 1,036 ms
73,756 KB
testcase_32 AC 1,096 ms
72,824 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 918 ms
74,676 KB
testcase_38 AC 771 ms
71,568 KB
testcase_39 AC 555 ms
59,160 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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 / 3);
		for (int i = 0; i < A.length; ++i) {
			if (A[i] <= 0)
				continue;
			int idx = Arrays.binarySearch(dp, (int) A[i]);
			if (idx >= 0) {
				dp[idx + 1] = (int) A[i];
			} else {
				idx = -(idx + 1);
				dp[idx] = (int) A[i];
			}
		}
		int ans = 0;
		for (int i = 0; i < dp.length; ++i) {
			if (dp[i] == Integer.MAX_VALUE / 3)
				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;
	}

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

}
0