import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int num = in.nextInt(); int[] height = new int[num]; int[] left = new int[num]; //以i结尾的最长递增子序列 Arrays.fill(left, 1); int[] right = new int[num];...