首页 > 其他分享 >PAT_A1101 Quick Sort

PAT_A1101 Quick Sort

时间:2023-10-25 09:44:36浏览次数:35  
标签:Sort int larger than Quick pivot line A1101 its

There is a classical process named partition in the famous quick sort algorithm. In this process we typically choose one element as the pivot. Then the elements less than the pivot are moved to its left and those larger than the pivot to its right. Given N distinct positive integers after a run of partition, could you tell how many elements could be the selected pivot for this partition?

For example, given N=5 and the numbers 1, 3, 2, 4, and 5. We have:

  • 1 could be the pivot since there is no element to its left and all the elements to its right are larger than it;
  • 3 must not be the pivot since although all the elements to its left are smaller, the number 2 to its right is less than it as well;
  • 2 must not be the pivot since although all the elements to its right are larger, the number 3 to its left is larger than it as well;
  • and for the similar reason, 4 and 5 could also be the pivot.

Hence in total there are 3 pivot candidates.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (≤105). Then the next line contains N distinct positive integers no larger than 109. The numbers in a line are separated by spaces.

Output Specification:

For each test case, output in the first line the number of pivot candidates. Then in the next line print these candidates in increasing order. There must be exactly 1 space between two adjacent numbers, and no extra space at the end of each line.

Sample Input:

5
1 3 2 4 5

Sample Output:

3
1 4 5
#include<bits/stdc++.h>
using namespace std;
const int N = 100000+5;
int n,c;
int a[N], l[N], r[N], ans[N];
int main(){
	scanf("%d", &n);
	for(int i = 0; i < n; i++) scanf("%d", &a[i]);
	for(int i = 1; i < n; i++) l[i] = max(a[i-1], l[i-1]);
	r[n-1] = (1<<31)-1;
	for(int i = n-2; i >= 0; i--) r[i] = min(a[i+1], r[i+1]);
	for(int i = 0; i < n; i++)
		if(l[i] < a[i] && a[i] < r[i]) ans[c++] = a[i];
	printf("%d\n", c);
	for(int i = 0; i < c; i++){
		if(i != 0) printf(" ");
		printf("%d", ans[i]);
	}
	printf("\n");
	return 0;
}

1、刚开始想到的思路是对数组排序,然后位置不变的元素是pivot,后来发现这只是必要条件
2、 #递推
l[i] 表示a[i] 左边最大的元素,r[i] 表示a[i] 右边最小的元素,a[i] 是pivot当且仅当 l[i] < a[i] && a[i] < r[i]
3、当pivot个数是0时,第二行没有输出pivot,但必须输出换行。否则测试点2会报错。

标签:Sort,int,larger,than,Quick,pivot,line,A1101,its
From: https://www.cnblogs.com/Afinis/p/17786389.html

相关文章

  • [DataFocus Cloud 对比 QuickBI](https://www.datafocus.ai/comparison/quick-bi.html
    产品对比对比Tableau对比PowerBI对比QuickSight对比Qlik对比ThoughtSpot对比FineBI对比SmartBI对比永洪BI对比QuickBI对比百度Sugar......
  • 【保姆级教学】抛弃QuickConnect,免费极速远程访问黑群辉、白群晖NAS
    相信很多使用群晖NAS的小伙伴都不满意群晖自带的QuickConnect远程访问,不是速度慢就是连不上,而且很多套件不支持QuickConnect,这里我将教大家如何使用免费的内网穿透工具来实现异地远程访问群晖NAS,而且支持所有的套件的远程访问,小白也能看懂。步骤1:注册并安装内网穿透工具Solopace.......
  • How To Clear Quick Access And Recent File And Folders In Windows 10
    HowToClearQuickAccessAndRecentFileAndFoldersInWindows10HerearetheinstructionstocleartheQuickAccessandRecentFilesandFolderscacheandreturnitbacktofactorydefaultstateinWindows10.Step1OpenFileExplorerStep2Click......
  • javascript: Sorting Algorithms
      /***fileSort.js*ide:vscodeJavaScriptSortingAlgorithms*插件:IntelliSense,JSDoc,CodeLens,DebuggerforChrome,静态代码检查:ESLint,JSHint,FlowLangugaeSupport,StandardJS-JavaScriptStandardStyle,koroFileHeader(文件头注释),测试插件:Mochasideba......
  • javascript: Sorting Algorithms
     /***fileSort.js*ide:vscodeJavaScriptSortingAlgorithms*插件:IntelliSense,JSDoc,CodeLens,DebuggerforChrome,静态代码检查:ESLint,JSHint,FlowLangugaeSupport,StandardJS-JavaScriptStandardStyle,koroFileHeader(文件头注释),测试插件:Mochasidebar,M......
  • Qt Quick 工程创建
    一、简介QtQuick是Qt框架中的一个模块,用于创建现代、响应式的用户界面。它基于QML(QtMeta-ObjectLanguage)语言和QtQuickControls库,提供了一种声明性的方式来构建用户界面。QtQuick的主要特点包括:QML语言:QML是一种基于JavaScript的声明性语言,用于描述用户界面的结构和行......
  • 新手教程系列:群晖QuickConnect:最简单的群晖外网访问NAS工具
    通过群晖Synology免费提供的QuickConnect服务,您可在外部网络轻松连接到群晖SynologyNAS,而无需设置端口转发规则或其它复杂的网络设置。QuickConnect可让您通过一个简单的可自定义地址(如 quickconnect.to/example)进行连接。这是一个简单易用,快捷部署的外网访问方式,适合群晖......
  • PAT_A1067 Sort with Swap(0, i)
    Givenanypermutationofthenumbers{0,1,2,..., N−1},itiseasytosorttheminincreasingorder.Butwhatif Swap(0,*) istheONLYoperationthatisallowedtouse?Forexample,tosort{4,0,2,1,3}wemayapplytheswapoperationsinthefollowi......
  • 冒泡排序算法(Bubble Sort)—经典排序算法
    导言冒泡排序是最基本、最简单的排序算法之一,它通过多次遍历待排序的数组或列表,依次比较相邻的元素并交换位置,使得较大(或较小)的元素逐渐“浮”到数组的一端。原理分析冒泡排序算法通过多次遍历待排序的数组或列表,依次比较相邻的元素并交换位置,使得较大(或较小)的元素逐渐“浮”到数组......
  • sortable 拖拽后数据变更但视图不变
    问题表格中某两行拖拽换序,使用sortable.js在拖拽结束后调用换序接口,再更新数据列表。问题是数据变了,但视图不变。如下图所示:分析vue无法检测数组中顺序的变化。即使采用$set,$forceUpdate(),给组件添加key属性,仍然无法解决该问题。解决办法请求数据列表前,先重置列表。......