結果
問題 | No.711 競技レーティング単調増加 |
ユーザー | 37zigen |
提出日時 | 2018-06-30 00:19:47 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,522 bytes |
コンパイル時間 | 2,503 ms |
コンパイル使用メモリ | 79,836 KB |
実行使用メモリ | 77,436 KB |
最終ジャッジ日時 | 2024-07-01 00:35:47 |
合計ジャッジ時間 | 32,007 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
54,188 KB |
testcase_01 | AC | 142 ms
54,072 KB |
testcase_02 | AC | 140 ms
54,308 KB |
testcase_03 | WA | - |
testcase_04 | AC | 148 ms
54,296 KB |
testcase_05 | WA | - |
testcase_06 | AC | 150 ms
53,940 KB |
testcase_07 | AC | 147 ms
54,208 KB |
testcase_08 | AC | 149 ms
54,040 KB |
testcase_09 | AC | 149 ms
54,164 KB |
testcase_10 | AC | 147 ms
54,124 KB |
testcase_11 | AC | 148 ms
53,960 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 150 ms
54,340 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 993 ms
75,168 KB |
testcase_31 | AC | 1,116 ms
75,040 KB |
testcase_32 | AC | 1,179 ms
77,332 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 856 ms
75,500 KB |
testcase_37 | AC | 974 ms
76,840 KB |
testcase_38 | AC | 826 ms
76,172 KB |
testcase_39 | AC | 606 ms
61,648 KB |
testcase_40 | WA | - |
testcase_41 | AC | 139 ms
53,792 KB |
testcase_42 | WA | - |
testcase_43 | AC | 678 ms
68,664 KB |
ソースコード
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(); long[] A = new long[N]; for (int i = 0; i < N; ++i) { A[i] = sc.nextLong() - i + N; } A = shrink(A); int[] dp = new int[N + 1]; Arrays.fill(dp, Integer.MAX_VALUE / 3); for (int i = 0; i < N; ++i) { 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); } long[] shrink(long[] a) { int n = a.length; long[] ret = new long[n]; long[][] x = new long[n][2]; for (int i = 0; i < n; ++i) { x[i][0] = i; x[i][1] = a[i]; } Arrays.sort(x, new Comparator<long[]>() { @Override public int compare(long[] o1, long[] o2) { return Long.compare(o1[1], o2[1]); } }); int p = 1; 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)); } }