結果

問題 No.1804 Intersection of LIS
ユーザー ks2mks2m
提出日時 2022-01-07 23:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 2,011 bytes
コンパイル時間 2,732 ms
コンパイル使用メモリ 80,004 KB
実行使用メモリ 102,676 KB
最終ジャッジ日時 2024-11-14 09:17:01
合計ジャッジ時間 16,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,988 KB
testcase_01 AC 55 ms
50,296 KB
testcase_02 AC 54 ms
50,244 KB
testcase_03 AC 559 ms
98,268 KB
testcase_04 AC 561 ms
98,308 KB
testcase_05 AC 551 ms
98,484 KB
testcase_06 AC 545 ms
98,224 KB
testcase_07 AC 556 ms
98,744 KB
testcase_08 AC 553 ms
98,356 KB
testcase_09 AC 557 ms
98,504 KB
testcase_10 AC 542 ms
98,592 KB
testcase_11 AC 551 ms
98,256 KB
testcase_12 AC 554 ms
98,060 KB
testcase_13 AC 557 ms
98,324 KB
testcase_14 AC 551 ms
98,292 KB
testcase_15 AC 555 ms
98,364 KB
testcase_16 AC 559 ms
98,452 KB
testcase_17 AC 548 ms
98,336 KB
testcase_18 AC 92 ms
51,456 KB
testcase_19 AC 79 ms
51,412 KB
testcase_20 AC 81 ms
51,736 KB
testcase_21 AC 92 ms
51,728 KB
testcase_22 AC 92 ms
51,572 KB
testcase_23 AC 91 ms
51,672 KB
testcase_24 AC 83 ms
51,520 KB
testcase_25 AC 87 ms
51,236 KB
testcase_26 AC 90 ms
51,160 KB
testcase_27 AC 87 ms
51,208 KB
testcase_28 AC 55 ms
50,336 KB
testcase_29 AC 56 ms
50,488 KB
testcase_30 AC 54 ms
50,388 KB
testcase_31 AC 55 ms
50,316 KB
testcase_32 AC 55 ms
50,404 KB
testcase_33 AC 55 ms
50,052 KB
testcase_34 AC 56 ms
50,312 KB
testcase_35 AC 695 ms
102,416 KB
testcase_36 AC 690 ms
102,676 KB
testcase_37 AC 419 ms
91,084 KB
testcase_38 AC 418 ms
90,704 KB
testcase_39 AC 55 ms
50,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int[] dp = new int[n + 1];
		List<List<Integer>> list = new ArrayList<>(n + 1);
		list.add(new ArrayList<>());
		for (int i = 1; i <= n; i++) {
			dp[i] = Integer.MAX_VALUE;
			list.add(new ArrayList<>());
		}

		for (int i = 0; i < n; i++) {
			int idx = Arrays.binarySearch(dp, a[i]);
			if (idx < 0) idx = ~idx;
			dp[idx] = a[i];
			list.get(idx).add(i);
		}

		int lis = Arrays.binarySearch(dp, Integer.MAX_VALUE - 1);
		if (lis < 0) {
			lis = ~lis;
			lis--;
		}

		List<Integer> list2 = list.get(lis);
		int l = 0;
		int r = list2.size() - 1;
		List<Integer> ans = new ArrayList<>();
		int cnt = 0;
		if (r == 0) {
			ans.add(a[list2.get(0)]);
			cnt++;
		}

		for (int i = lis - 1; i > 0; i--) {
			List<Integer> cur = list.get(i + 1);
			List<Integer> next = list.get(i);
			int max = a[cur.get(l)];
			int min = a[cur.get(r)];
			int nr = -1;
			int nl = -1;
			for (int j = next.size() - 1; j >= 0; j--) {
				if (nr == -1) {
					if (next.get(j) < cur.get(r) && a[next.get(j)] < min) {
						nr = j;
						nl = nr;
					}
				} else {
					if (a[next.get(j)] < max) {
						nl = j;
					} else {
						break;
					}
				}
			}
			if (nl == nr) {
				ans.add(a[next.get(nl)]);
				cnt++;
			}
			l = nl;
			r = nr;
		}
		StringBuilder sb = new StringBuilder();
		if (cnt > 0) {
			Collections.reverse(ans);
			for (int i : ans) {
				sb.append(i).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
		}
		System.out.println(cnt);
		System.out.println(sb.toString());
	}
}
0