結果
問題 | No.711 競技レーティング単調増加 |
ユーザー | Medo Nasser |
提出日時 | 2018-07-05 14:56:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 671 ms / 2,000 ms |
コード長 | 2,358 bytes |
コンパイル時間 | 2,354 ms |
コンパイル使用メモリ | 80,672 KB |
実行使用メモリ | 75,388 KB |
最終ジャッジ日時 | 2024-07-01 02:33:10 |
合計ジャッジ時間 | 18,633 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,428 KB |
testcase_01 | AC | 56 ms
50,352 KB |
testcase_02 | AC | 55 ms
49,900 KB |
testcase_03 | AC | 57 ms
49,856 KB |
testcase_04 | AC | 56 ms
50,144 KB |
testcase_05 | AC | 57 ms
50,556 KB |
testcase_06 | AC | 57 ms
50,576 KB |
testcase_07 | AC | 55 ms
50,416 KB |
testcase_08 | AC | 55 ms
50,428 KB |
testcase_09 | AC | 56 ms
50,460 KB |
testcase_10 | AC | 58 ms
50,412 KB |
testcase_11 | AC | 58 ms
50,496 KB |
testcase_12 | AC | 56 ms
50,452 KB |
testcase_13 | AC | 57 ms
50,476 KB |
testcase_14 | AC | 58 ms
50,276 KB |
testcase_15 | AC | 56 ms
50,560 KB |
testcase_16 | AC | 56 ms
50,140 KB |
testcase_17 | AC | 57 ms
50,056 KB |
testcase_18 | AC | 645 ms
73,460 KB |
testcase_19 | AC | 645 ms
73,256 KB |
testcase_20 | AC | 634 ms
69,740 KB |
testcase_21 | AC | 657 ms
72,644 KB |
testcase_22 | AC | 630 ms
73,508 KB |
testcase_23 | AC | 671 ms
73,092 KB |
testcase_24 | AC | 662 ms
72,980 KB |
testcase_25 | AC | 624 ms
71,164 KB |
testcase_26 | AC | 618 ms
69,820 KB |
testcase_27 | AC | 622 ms
71,100 KB |
testcase_28 | AC | 472 ms
65,196 KB |
testcase_29 | AC | 578 ms
68,648 KB |
testcase_30 | AC | 513 ms
65,112 KB |
testcase_31 | AC | 586 ms
66,144 KB |
testcase_32 | AC | 590 ms
68,772 KB |
testcase_33 | AC | 450 ms
62,540 KB |
testcase_34 | AC | 404 ms
62,672 KB |
testcase_35 | AC | 503 ms
66,760 KB |
testcase_36 | AC | 442 ms
75,388 KB |
testcase_37 | AC | 532 ms
71,648 KB |
testcase_38 | AC | 462 ms
69,652 KB |
testcase_39 | AC | 349 ms
62,988 KB |
testcase_40 | AC | 368 ms
60,600 KB |
testcase_41 | AC | 55 ms
50,336 KB |
testcase_42 | AC | 253 ms
56,128 KB |
testcase_43 | AC | 422 ms
65,312 KB |
ソースコード
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(); if (arr[i] - i <= 0) { bad[i] = true; } arr[i] -= i; 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(); } } }