結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,032 KB
testcase_01 AC 138 ms
54,260 KB
testcase_02 AC 137 ms
54,180 KB
testcase_03 AC 147 ms
54,268 KB
testcase_04 AC 145 ms
54,080 KB
testcase_05 AC 145 ms
54,004 KB
testcase_06 AC 148 ms
54,300 KB
testcase_07 AC 149 ms
53,828 KB
testcase_08 AC 148 ms
54,268 KB
testcase_09 AC 154 ms
54,200 KB
testcase_10 AC 147 ms
53,960 KB
testcase_11 AC 146 ms
54,192 KB
testcase_12 AC 149 ms
53,996 KB
testcase_13 AC 147 ms
54,112 KB
testcase_14 AC 146 ms
53,872 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 147 ms
53,916 KB
testcase_18 AC 968 ms
69,612 KB
testcase_19 AC 894 ms
69,500 KB
testcase_20 AC 928 ms
71,020 KB
testcase_21 AC 1,006 ms
71,488 KB
testcase_22 AC 921 ms
69,652 KB
testcase_23 AC 1,002 ms
72,208 KB
testcase_24 AC 973 ms
70,872 KB
testcase_25 AC 907 ms
69,356 KB
testcase_26 AC 930 ms
68,948 KB
testcase_27 AC 936 ms
68,204 KB
testcase_28 AC 773 ms
62,092 KB
testcase_29 AC 788 ms
63,828 KB
testcase_30 AC 967 ms
75,060 KB
testcase_31 AC 1,086 ms
75,368 KB
testcase_32 AC 1,123 ms
73,848 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 662 ms
63,496 KB
testcase_37 AC 969 ms
73,164 KB
testcase_38 AC 824 ms
72,168 KB
testcase_39 AC 594 ms
58,948 KB
testcase_40 WA -
testcase_41 AC 135 ms
53,868 KB
testcase_42 WA -
testcase_43 AC 674 ms
65,944 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 / 3);
		for (int i = 0; i < A.length; ++i) {
			int idx = Arrays.binarySearch(dp, 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