Most socially-distanced subsequence(贪心)

题目

Given a permutation p of length n, find its subsequence s1, s2, …, sk of length at least 2 such that:

|s1−s2|+|s2−s3|+…+|sk−1−sk| is as big as possible over all subsequences of p with length at least 2.
Among all such subsequences, choose the one whose length, k, is as small as possible.
If multiple subsequences satisfy these conditions, you are allowed to find any of them.

A sequence a is a subsequence of an array b if a can be obtained from b by deleting some (possibly, zero or all) elements.

A permutation of length n is an array of length n in which every element from 1 to n occurs exactly once.

Input
The first line contains an integer t ( 1 ≤ t ≤ 2 × 1 0 4 ) t (1≤t≤2\times10^4) t(1t2×104)— the number of test cases. The description of the test cases follows.

The first line of each test case contains an integer n ( 2 ≤ n ≤ 1 0 5 ) n (2≤n≤10^5) n(2n105) — the length of the permutation p.

The second line of each test case contains n integers p1, p2, …, pn (1≤pi≤n, pi are distinct) — the elements of the permutation p.

The sum of n across the test cases doesn’t exceed 105.

Output
For each test case, the first line should contain the length of the found subsequence, k. The second line should contain s1, s2, …, sk — its elements.

If multiple subsequences satisfy these conditions, you are allowed to find any of them.

Example
Input
2
3
3 2 1
4
1 3 4 2
Output
2
3 1
3
1 4 2

思路

把这个排列想象成一个个长条排放在坐标轴上,如1,3,2 ,4在这里插入图片描述
如此看来,不难看出要让子数组相邻数字的差的绝对值的和最大要递增或递减地去寻找,从第一个开始,放入子数组的第一位,往后若递增(a[i]>a[i-1]),则一直往下寻找,直到出现转折(a[i]<a[i-1]),再把a[i-1]放到子数组的下一个。若往后递减也类似如此去寻找子数组里的各个数字。在这里插入代码片

代码

#include <iostream>
#include <vector>
#include <bits/stdc++.h>
using namespace std;

const int N=1e5+5;

int a[N];
int sub[N];

int main()
{
    int t;
    scanf("%d",&t);
    int n;
    while(t--){
        scanf("%d",&n);
        for(int i=0;i<n;i++){
            scanf("%d",&a[i]);
        }
        int temp=0;
        sub[temp++]=a[0];
        int i=1;
        while(i<n){
            if(a[i]<a[i-1]){
                while(a[i]<a[i-1] && i<n){
                    i++;
                }
                sub[temp++]=a[i-1];
            }
            else{
                while(a[i]>a[i-1] && i<n){
                    i++;
                }
                sub[temp++]=a[i-1];
            }
        }
        printf("%d\n",temp);
        for(int j=0;j<temp;j++){
            printf("%d ",sub[j]);
        }
        printf("\n");
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值