Two progressions CodeForce 125D 思维题
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.
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
6
4 1 2 7 3 10
1 2 3
4 7 10
5
1 2 3 -2 -7
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 思维题的更多相关文章
- ACM思维题训练 Section A
题目地址: 选题为入门的Codeforce div2/div1的C题和D题. 题解: A:CF思维联系–CodeForces -214C (拓扑排序+思维+贪心) B:CF–思维练习-- CodeFo ...
- zoj 3778 Talented Chef(思维题)
题目 题意:一个人可以在一分钟同时进行m道菜的一个步骤,共有n道菜,每道菜各有xi个步骤,求做完的最短时间. 思路:一道很水的思维题, 根本不需要去 考虑模拟过程 以及先做那道菜(比赛的时候就是这么考 ...
- cf A. Inna and Pink Pony(思维题)
题目:http://codeforces.com/contest/374/problem/A 题意:求到达边界的最小步数.. 刚开始以为是 bfs,不过数据10^6太大了,肯定不是... 一个思维题, ...
- ZOJ 3829 贪心 思维题
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3829 现场做这道题的时候,感觉是思维题.自己智商不够.不敢搞,想着队友智商 ...
- 洛谷P4643 [国家集训队]阿狸和桃子的游戏(思维题+贪心)
思维题,好题 把每条边的边权平分到这条边的两个顶点上,之后就是个sb贪心了 正确性证明: 如果一条边的两个顶点被一个人选了,一整条边的贡献就凑齐了 如果分别被两个人选了,一作差就抵消了,相当于谁都没有 ...
- 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 ...
- PJ考试可能会用到的数学思维题选讲-自学教程-自学笔记
PJ考试可能会用到的数学思维题选讲 by Pleiades_Antares 是学弟学妹的讲义--然后一部分题目是我弄的一部分来源于洛谷用户@ 普及组的一些数学思维题,所以可能有点菜咯别怪我 OI中的数 ...
- 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 ...
- 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 ...
随机推荐
- Linux 防火墙开放、查询、关闭端口
1. 开放指定端口 firewall-cmd --zone=public --add-port=5121/tcp --permanent # --permanent 永久生效,如果不加此条,重启后该命 ...
- JavaScript 防抖
JavaScript 防抖 在前端开发中会遇到一些频繁的事件触发,比如: window 的 resize.scroll mousedown.mousemove keyup.keydown... 防 ...
- [翻译] .NET Core 3.0 Preview 9 发布
原文: Announcing .NET Core 3.0 Preview 9 今天,我们宣布推出 .NET Core 3.0 Preview 9.就像 Preview 8 一样,我们专注于打磨 .NE ...
- bzoj 1146 网络管理Network (CDQ 整体二分 + 树刨)
题目传送门 题意:求树上路径可修改的第k大值是多少. 题解:CDQ整体二分+树刨. 每一个位置上的数都会有一段持续区间 根据CDQ拆的思维,可以将这个数拆成出现的时间点和消失的时间点. 然后通过整体二 ...
- CF993A Two Squares 几何 第二道 暴力或判断条件(*)
Two Squares time limit per test 1 second memory limit per test 256 megabytes input standard input ou ...
- Spring Boot2 系列教程(二)创建 Spring Boot 项目的三种方式
我最早是 2016 年底开始写 Spring Boot 相关的博客,当时使用的版本还是 1.4.x ,文章发表在 CSDN 上,阅读量最大的一篇有 43W+,如下图: 2017 年由于种种原因,就没有 ...
- docker 搭建自己的github
github 搭建: 自己搭建一个github网站(仓库) daocloud:公共hub搜索git下载github镜像 docker pull gitlab/gitlab-ce:8.7.0-r ...
- Python 之父的解析器系列之六:给 PEG 语法添加动作
原题 | Adding Actions to a PEG Grammar 作者 | Guido van Rossum(Python之父) 译者 | 豌豆花下猫("Python猫"公 ...
- 2019最新WEB全栈架构师第八期视频教程
下载链接:https://www.yinxiangit.com/117.html
- Go依赖管理及Go module使用
Go语言的依赖管理随着版本的更迭正逐渐完善起来. 依赖管理 为什么需要依赖管理 最早的时候,Go所依赖的所有的第三方库都放在GOPATH这个目录下面.这就导致了同一个库只能保存一个版本的代码.如果不同 ...