結果

問題 No.711 競技レーティング単調増加
ユーザー Medo NasserMedo Nasser
提出日時 2018-07-05 14:52:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,340 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 81,240 KB
実行使用メモリ 75,480 KB
最終ジャッジ日時 2024-07-01 02:27:39
合計ジャッジ時間 18,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,056 KB
testcase_01 AC 54 ms
50,380 KB
testcase_02 AC 53 ms
50,460 KB
testcase_03 AC 55 ms
50,328 KB
testcase_04 AC 54 ms
50,284 KB
testcase_05 WA -
testcase_06 AC 54 ms
50,544 KB
testcase_07 AC 55 ms
50,068 KB
testcase_08 AC 55 ms
50,296 KB
testcase_09 AC 55 ms
50,580 KB
testcase_10 AC 54 ms
50,580 KB
testcase_11 AC 54 ms
50,324 KB
testcase_12 AC 55 ms
50,532 KB
testcase_13 AC 54 ms
50,004 KB
testcase_14 AC 53 ms
50,416 KB
testcase_15 AC 56 ms
50,424 KB
testcase_16 AC 55 ms
50,416 KB
testcase_17 AC 55 ms
50,512 KB
testcase_18 AC 563 ms
73,684 KB
testcase_19 AC 578 ms
73,792 KB
testcase_20 AC 591 ms
70,072 KB
testcase_21 AC 602 ms
72,892 KB
testcase_22 AC 601 ms
73,164 KB
testcase_23 AC 644 ms
73,188 KB
testcase_24 AC 636 ms
72,548 KB
testcase_25 AC 591 ms
71,192 KB
testcase_26 WA -
testcase_27 AC 558 ms
70,788 KB
testcase_28 AC 463 ms
65,020 KB
testcase_29 AC 504 ms
65,712 KB
testcase_30 AC 489 ms
65,112 KB
testcase_31 AC 548 ms
66,432 KB
testcase_32 AC 571 ms
68,620 KB
testcase_33 AC 439 ms
62,996 KB
testcase_34 AC 420 ms
62,852 KB
testcase_35 AC 505 ms
65,368 KB
testcase_36 AC 447 ms
75,480 KB
testcase_37 AC 499 ms
72,188 KB
testcase_38 AC 537 ms
72,828 KB
testcase_39 AC 331 ms
62,800 KB
testcase_40 AC 346 ms
60,608 KB
testcase_41 AC 54 ms
52,244 KB
testcase_42 AC 224 ms
56,088 KB
testcase_43 AC 425 ms
65,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.util.StringTokenizer;
import java.util.TreeMap;

public class Main
{
	static int bit[];
	static void update(int ind,int delta) {
		while (ind < bit.length) {
			bit[ind] = Math.max(bit[ind], delta);
			ind += ind & -ind;
		}
	}
	static int get(int ind) {
		int res = 0;
		while (ind > 0) {
			res = Math.max(res, bit[ind]);
			ind -= ind & -ind;
		}
		return res;
	}
	public static void main(String[]args) throws Throwable {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean bad[] = new boolean[n];
		TreeMap<Integer,Integer> cord = new TreeMap();
		int arr[] = new int[n];
		for (int i = 0 ; i < n ; ++i) {
			arr[i] = sc.nextInt() - i;
			if (arr[i] < 0) {
				bad[i] = true;
			}
			cord.put(arr[i], 0);
		}

		int maxVal = 1;
		for (Map.Entry<Integer,Integer> x : cord.entrySet()) {
			x.setValue(maxVal++);
		}
		int lis = 0;
		maxVal++;
		bit = new int[maxVal + 1];
		for (int i = 0 ; i < n; ++i) {
			arr[i] = cord.get(arr[i]);
		}
		for (int i = 0 ; i < n ; ++i) {
			if (bad[i]) {
				continue;
			}
			int cur = get(arr[i]) + 1;
			lis = Math.max(lis, cur);
			update(arr[i],cur);
		}

		System.out.println(n - lis);
	}

	static class Scanner {
		StringTokenizer st;
		BufferedReader br;

		public Scanner(InputStream s) {
			br = new BufferedReader(new InputStreamReader(s));
		}

		public Scanner(String s) throws FileNotFoundException {
			br = new BufferedReader(new FileReader(new File(s)));
		}

		public String next() throws IOException {
			while (st == null || !st.hasMoreTokens())
				st = new StringTokenizer(br.readLine());
			return st.nextToken();
		}

		public int nextInt() throws IOException {
			return Integer.parseInt(next());
		}

		public long nextLong() throws IOException {
			return Long.parseLong(next());
		}

		public String nextLine() throws IOException {
			return br.readLine();
		}

		public double nextDouble() throws IOException {
			return Double.parseDouble(next());
		}

		public boolean ready() throws IOException {
			return br.ready();
		}
	}
}
0