An arithmetic progression is such a non-empty sequence of numbers where the difference between any two successive numbers is constant. This constant number is called common difference. For example, the sequence 3, 7, 11, 15 is an arithmetic progression. The definition implies that any sequences whose length equals 1 or 2 are arithmetic and all sequences whose length equals 0 are non-arithmetic.

You are given a sequence of different integers a1, a2, ..., an. You should either split it into two arithmetic progressions or find out that the operation is impossible to perform. Splitting assigns each member of the given sequence to one of two progressions, but the relative order of numbers does not change. Splitting is an inverse operation to merging.

Input

The first line contains a positive integer n (2 ≤ n ≤ 30000), n is the length of the given sequence. The second line contains elements of the given sequence a1, a2, ..., an ( - 108 ≤ ai ≤ 108). The elements of the progression are different integers.

Output

Print the required arithmetic progressions, one per line.
The progressions can be positioned in any order. Each progression
should contain at least one number. If there's no solution, then print
"No solution" (without the quotes)in the only line of the input file. If
there are several solutions, print any of them.

Examples

Input
6
4 1 2 7 3 10
Output
1 2 3 
4 7 10
Input
5
1 2 3 -2 -7
Output
1 2 3 
-2 -7

Note

In the second sample another solution is also possible (number three can be assigned to the second progression): 1, 2 and 3, -2, -7.

OJ-ID:
CodeForce 125D

author:
Caution_X

date of submission:
20191002

tags:
思维

description modelling:
给定一个序列,把它分成两个非空子序列s1,s2,(s1+s2=全集),每一个序列都是等差序列,如果可以输出两个子序列,否则输出No solution

解:
(1) 对每个数,要么在第一个子序列,要么在第二个子序列,根据鸽巢原理,将前三个元素放入两个数列必然有两个数在同一个数列,其中元素个数大于1的数列会形成一个公差,且公差d最多只有有三个值
(2) 根据其中一个公差d生成一个等差数列,然后将剩下的数放在另一个数列,判断另一个数列是不是等差数列
(3) 是等差数列则直接输出,否则将第一个数列尾部元素移到第二个数列,判断是否构成等差数列
(4) 如果构成则输出,否则枚举其他公差值

补充:
对(3)->(4)中将其中一个数列尾部元素移至另一个数列时若还不构成等差数列则应该枚举其他公差的证明:
从构造的等差数列里移动2个元素过来,假设,移动第一个后没有形成等差数列,移动第二个后形成了等差数列,那么这个新形成的等差数列公差和原来构建的等差数列的公差相等,也就是说这个新形成的等差数列和原来的等差数列可以放在同一个数列中,即:在拆成两个子序列之前,原数列就是等差数列,既然原数列是等差数列,那么在移动第一元素后新数列就已经是等差数列了,和我们假设的移动第一个后没有形成等差数列矛盾,因此得出:第一元素移动后没有形成等差数列,那么接下来无论移动多少个元素都不会形成等差数列,因此当第一个元素移动完之后若不是等差数列就直接枚举其他的公差。

AC CODE:

#include<bits/stdc++.h>
using namespace std;
int a[],n;
bool vis[];
void print(vector<int> v)
{
for(int i=; i<v.size(); i++) printf("%d ",v[i]);
printf("\n");
}
bool check(vector<int> v)
{
if(v.empty()) return false;
else if(v.size()==||v.size()==) return true;
int d=v[]-v[];
for(int i=; i<v.size(); i++) {
if(v[i]-v[i-]!=d) return false;
}
return true;
}
bool solve(int l,int r)
{
vector<int> v1,v2;
int d=a[r]-a[l],get=a[l],last=-;
for(int i=; i<=n; i++) vis[i]=false;
for(int i=; i<=n; i++) {
if(a[i]==get) {
get+=d;
v1.push_back(a[i]);
last=i;
} else {
vis[i]=true;
}
}
for(int i=; i<=n; i++) {
if(vis[i]) {
v2.push_back(a[i]);
}
}
if(check(v2)) {
print(v1);
print(v2);
return true;
} else {
v1.pop_back();
v2.clear();
vis[last]=true;
for(int i=; i<=n; i++) {
if(vis[i])
v2.push_back(a[i]);
}
if(check(v2)) {
print(v1);
print(v2);
return true;
}
}
return false;
}
int main()
{
//freopen("input1.txt","r",stdin);
//freopen("input2.txt","r",stdin);
scanf("%d",&n);
for(int i=; i<=n; i++) {
scanf("%d",&a[i]);
}
if(n==) printf("%d\n%d",a[],a[]);
else if(!solve(,)&&!solve(,)&&!solve(,)) printf("No solution\n");
return ;
}

Two progressions CodeForce 125D 思维题的更多相关文章

  1. ACM思维题训练 Section A

    题目地址: 选题为入门的Codeforce div2/div1的C题和D题. 题解: A:CF思维联系–CodeForces -214C (拓扑排序+思维+贪心) B:CF–思维练习-- CodeFo ...

  2. zoj 3778 Talented Chef(思维题)

    题目 题意:一个人可以在一分钟同时进行m道菜的一个步骤,共有n道菜,每道菜各有xi个步骤,求做完的最短时间. 思路:一道很水的思维题, 根本不需要去 考虑模拟过程 以及先做那道菜(比赛的时候就是这么考 ...

  3. cf A. Inna and Pink Pony(思维题)

    题目:http://codeforces.com/contest/374/problem/A 题意:求到达边界的最小步数.. 刚开始以为是 bfs,不过数据10^6太大了,肯定不是... 一个思维题, ...

  4. ZOJ 3829 贪心 思维题

    http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3829 现场做这道题的时候,感觉是思维题.自己智商不够.不敢搞,想着队友智商 ...

  5. 洛谷P4643 [国家集训队]阿狸和桃子的游戏(思维题+贪心)

    思维题,好题 把每条边的边权平分到这条边的两个顶点上,之后就是个sb贪心了 正确性证明: 如果一条边的两个顶点被一个人选了,一整条边的贡献就凑齐了 如果分别被两个人选了,一作差就抵消了,相当于谁都没有 ...

  6. C. Nice Garland Codeforces Round #535 (Div. 3) 思维题

    C. Nice Garland time limit per test 1 second memory limit per test 256 megabytes input standard inpu ...

  7. PJ考试可能会用到的数学思维题选讲-自学教程-自学笔记

    PJ考试可能会用到的数学思维题选讲 by Pleiades_Antares 是学弟学妹的讲义--然后一部分题目是我弄的一部分来源于洛谷用户@ 普及组的一些数学思维题,所以可能有点菜咯别怪我 OI中的数 ...

  8. UVA 1394 And Then There Was One / Gym 101415A And Then There Was One / UVAlive 3882 And Then There Was One / POJ 3517 And Then There Was One / Aizu 1275 And Then There Was One (动态规划,思维题)

    UVA 1394 And Then There Was One / Gym 101415A And Then There Was One / UVAlive 3882 And Then There W ...

  9. HDU 1029 Ignatius and the Princess IV / HYSBZ(BZOJ) 2456 mode(思维题,~~排序?~~)

    HDU 1029 Ignatius and the Princess IV (思维题,排序?) Description "OK, you are not too bad, em... But ...

随机推荐

  1. HDU 6299

    题意略. 思路: 我们先把所有字符串处理成 ")))((((" 这样的形式.然后我们把这些字符串排个序,按照min(l,r)来排,小的在前,在我的代码中,l为 ( 的个数,r 为 ...

  2. Javaweb简介

    Javaweb简介 一.什么是Javaweb? 在Sun的Java Servlet规范中,对Java Web应用作了这样定义:“Java Web应用由一组Servlet.HTML页.类.以及其它可以被 ...

  3. Spring框架入门之基于Java注解配置bean

    Spring框架入门之基于Java注解配置bean 一.Spring bean配置常用的注解 常用的有四个注解 Controller: 用于控制器的注解 Service : 用于service的注解 ...

  4. Python Web Flask源码解读(二)——路由原理

    关于我 一个有思想的程序猿,终身学习实践者,目前在一个创业团队任team lead,技术栈涉及Android.Python.Java和Go,这个也是我们团队的主要技术栈. Github:https:/ ...

  5. WPF 浏览PDF 文件

    添加成功后会在工具箱里看到下图所示的控件.打开VS2010,新建项目(WpfPDFReader),右键项目添加User Control(用户控件).因为Adobe PDF Reader COM 组件是 ...

  6. React项目升级遇到的问题复盘(2019-09-02)

    老铁们,发没发现我换了个贼帅的头像,高端大气上档次,非洲大地我最凶!可把我自己牛逼坏了. 不扯啦不扯啦,抓紧进入今天的正题,从今天开始我会每天写一下每天工作的出现的问题,主要对这些问题出现的原因,以及 ...

  7. asio kcp源码分析

    asio kcp代码走读 (1)kcp_client_wrap类 a 提供方法接口如下: send_msg kcp_client_.send_msg(msg); stop //等待工作线程退出 set ...

  8. SPOJ - QTREE(树链剖分+单点更新+区间最大值查询)

    题意:给出n个点n-1条边的树,有两个操作,一个是查询节点l到r的边的最大值,然后指定边的更改权值. 题解:差不多是树链剖分的模版题,注意每个点表示的边是连向其父亲节点的边. #include < ...

  9. JPA案例

    ORM 什么是ORM: 对象关系映射(Object Relational Mapping,简称ORM)是建立实体类和数据库表之间的关系,从而达到操作实体类就相当于操作数据库表的目的. ORM思想 主要 ...

  10. SIA-GateWay之API网关安装部署指南

    SIA-GATEWAY是基于SpringCloud微服务生态体系下开发的一个分布式微服务网关系统.具备简单易用.可视化.高可扩展.高可用性等特征,提供云原生.完整及成熟的接入服务解决方案.本文介绍AP ...