E. Prairie Partition

It can be shown that any positive integer x can be uniquely represented as x = 1 + 2 + 4 + ... + 2k - 1 + r, where k and r are integers, k ≥ 0, 0 < r ≤ 2k. Let's call that representation prairie partition of x.

For example, the prairie partitions of 12, 17, 7 and 1 are:

12 = 1 + 2 + 4 + 5,

17 = 1 + 2 + 4 + 8 + 2,

7 = 1 + 2 + 4,

1 = 1.

Alice took a sequence of positive integers (possibly with repeating elements), replaced every element with the sequence of summands in its prairie partition, arranged the resulting numbers in non-decreasing order and gave them to Borys. Now Borys wonders how many elements Alice's original sequence could contain. Find all possible options!

Input

The first line contains a single integer n (1 ≤ n ≤ 105) — the number of numbers given from Alice to Borys.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 1012; a1 ≤ a2 ≤ ... ≤ an) — the numbers given from Alice to Borys.

Output

Output, in increasing order, all possible values of m such that there exists a sequence of positive integers of length m such that if you replace every element with the summands in its prairie partition and arrange the resulting numbers in non-decreasing order, you will get the sequence given in the input.

If there are no such values of m, output a single integer -1.

Examples
input
8
1 1 2 2 3 4 5 8
output
2 
Note

In the first example, Alice could get the input sequence from [6, 20] as the original sequence.

In the second example, Alice's original sequence could be either [4, 5] or [3, 3, 3].

 题意:

  每个数都可以表示成2的连续次方和加上一个r

  例如:12 = 1 + 2 + 4 + 5,

  17 = 1 + 2 + 4 + 8 + 2,

  现在给你这些数,让你反过来组成12,17,但是是有不同方案的

  看看样列就懂了,问你方案的长度种类

题解:

   将所有连续的2^x,处理出来,假设有now个序列

   最后剩下的数,我们必须将其放到上面now的尾端,但是我们优先放与当前值最接近的序列尾端,以防大一些的数仍然有位置可以放

   处理出满足条件最多序列数

  二分最少的能满足条件的序列数,也就是将mid个序列全部插入到上面now-mid个序列尾端,这里贪心选择2^x,x小的

#include<bits/stdc++.h>
using namespace std;
#pragma comment(linker, "/STACK:102400000,102400000")
#define ls i<<1
#define rs ls | 1
#define mid ((ll+rr)>>1)
#define pii pair<int,int>
#define MP make_pair
typedef long long LL;
const long long INF = 1e18+1LL;
const double Pi = acos(-1.0);
const int N = 1e5+, M = 1e3+, mod = 1e9+,inf = 2e9; LL H[],a[N];
int No,cnt[N],n,cnts;
vector<LL > G,ans;
vector<LL > all[N];
int sum[N],sum2[N];
pair<int,LL> P[N]; void go(LL x) {
int i;
for(i = ; i <= ; ++i) {
if(x < H[i])
break;
}
i--;
for(int j = ; j <= i; ++j) {
cnt[j]--;
if(cnt[j] < ) No = ;
return ;
}
}
int cango(LL x) {
if(x == ) return ;
int ok = ;
for(int i = ; i <= ; ++i) {
if(H[i] <= x) {
cnt[i]--;
if(cnt[i] < ) {
ok = ;
}
}
}
if(ok) {
for(int i = ; i <= ; ++i)
if(H[i] <= x) cnt[i]++;
return ;
}
else return ;
}
int can(LL now) {
for(int i = G.size()-; i >= ; --i) {
int ok = ;
for(int j = ; j <= ; ++j) {
if(G[i] <= H[j] && sum[j-]) {
sum[j-]--;
P[++cnts] = MP(j-,G[i]);
ok = ;
G.pop_back();
break;
}
}
if(!ok) return ;
}
return ;
}
int allcan(int x) {
int j = x+,i = ;
int ok;
while(j <= cnts && i < G.size()) {
if(P[j].second != ) j++;
else if(H[P[j].first+] < G[i]) j++;
else i++,j++;
}
if(i == G.size()) {
return ;
}
else return ;
}
int check(int x) {
x = cnts - x;
if(x > cnts) return ;
if(x == ) return ;
G.clear();
for(int i = ; i <= x; i++) {
for(int j = ; j <= P[i].first; ++j) {
G.push_back(H[j]);
}
if(P[i].second) {
G.push_back(P[i].second);
}
}
//for(int i = 0; i < G.size(); ++i) cout<<G[i]<<" ";cout<<endl;
if(allcan(x)) {
return ;
}
else return ;
}
int main() {
H[] = ;
for(int i = ; i <= ; ++i)H[i] = H[i-]*2LL;
scanf("%d",&n);
for(int i = ; i <= n; ++i) {
scanf("%I64d",&a[i]);
int ok = ;
for(int j = ; j <= ; ++j) {
if(a[i] == H[j]) {
ok = ;
cnt[j]++;
break;
}
}
if(!ok) G.push_back(a[i]);
}
int now = ;
for(int i = ; i >=; --i) {
while(cnt[i]) {
if(cango(H[i])) {
now++;
sum[i]++;
}
else break;
}
}
for(int i = ; i <= ; ++i)
for(int j = ; j <= cnt[i]; ++j) G.push_back(H[i]);
int l= ,r,ans = -,tmpr;
if(can(now)) r = now;
else r = -;
tmpr = r;
for(int i = ; i <= ; ++i) {
for(int j = ; j <= sum[i]; ++j) {
P[++cnts] = MP(i,);
}
}
sort(P+,P+cnts+);
while(l <= r) {
int md = (l + r) >> ;
if(check(md)) {
ans = md;
r = md-;
}
else l = md+;
}
//cout<<ans<<endl;
if(tmpr == -) puts("-1");
else {
for(int i = ans; i <= tmpr; ++i) cout<<i<<" ";
cout<<endl;
}
return ;
}
/*
5
1 2 3 4 5
*/

Codeforces Round #412 (rated, Div. 2, base on VK Cup 2017 Round 3) E. Prairie Partition 二分+贪心的更多相关文章

  1. Codeforces Round #412 (rated, Div. 2, base on VK Cup 2017 Round 3)(A.B.C,3道暴力题,C可二分求解)

    A. Is it rated? time limit per test:2 seconds memory limit per test:256 megabytes input:standard inp ...

  2. Codeforces Round #412 (rated, Div. 2, base on VK Cup 2017 Round 3) A B C D 水 模拟 二分 贪心

    A. Is it rated? time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...

  3. Codeforces Round #412 (rated, Div. 2, base on VK Cup 2017 Round 3) D - Dynamic Problem Scoring

    地址:http://codeforces.com/contest/807/problem/D 题目: D. Dynamic Problem Scoring time limit per test 2 ...

  4. Codeforces Round #412 (rated, Div. 2, base on VK Cup 2017 Round 3) A Is it rated?

    地址:http://codeforces.com/contest/807/problem/C 题目: C. Success Rate time limit per test 2 seconds mem ...

  5. Codeforces Round #405 (rated, Div. 2, based on VK Cup 2017 Round 1) 菜鸡只会ABC!

    Codeforces Round #405 (rated, Div. 2, based on VK Cup 2017 Round 1) 全场题解 菜鸡只会A+B+C,呈上题解: A. Bear and ...

  6. Codeforces Round #409 (rated, Div. 2, based on VK Cup 2017 Round 2)(A.思维题,B.思维题)

    A. Vicious Keyboard time limit per test:2 seconds memory limit per test:256 megabytes input:standard ...

  7. Codeforces Round #405 (rated, Div. 2, based on VK Cup 2017 Round 1) C. Bear and Different Names 贪心

    C. Bear and Different Names 题目连接: http://codeforces.com/contest/791/problem/C Description In the arm ...

  8. Codeforces Round #405 (rated, Div. 2, based on VK Cup 2017 Round 1) B - Bear and Friendship Condition 水题

    B. Bear and Friendship Condition 题目连接: http://codeforces.com/contest/791/problem/B Description Bear ...

  9. Codeforces Round #409 (rated, Div. 2, based on VK Cup 2017 Round 2) D. Volatile Kite

    地址:http://codeforces.com/contest/801/problem/D 题目: D. Volatile Kite time limit per test 2 seconds me ...

随机推荐

  1. POJ 1144 Network (求割点)

    题意: 给定一幅无向图, 求出图的割点. 割点模板:http://www.cnblogs.com/Jadon97/p/8328750.html 分析: 输入有点麻烦, 用stringsteam 会比较 ...

  2. 大数据学习——采集目录到HDFS

    采集需求:某服务器的某特定目录下,会不断产生新的文件,每当有新文件出现,就需要把文件采集到HDFS中去 根据需求,首先定义以下3大要素 l  采集源,即source——监控文件目录 :  spoold ...

  3. 大数据学习——hive数据类型

    1. hive的数据类型Hive的内置数据类型可以分为两大类:(1).基础数据类型:(2).复杂数据类型2. hive基本数据类型基础数据类型包括:TINYINT,SMALLINT,INT,BIGIN ...

  4. 大数据学习——shell编程

    03/ shell编程综合练习 自动化软件部署脚本 3.1 需求 1.需求描述 公司内有一个N个节点的集群,需要统一安装一些软件(jdk) 需要开发一个脚本,实现对集群中的N台节点批量自动下载.安装j ...

  5. Linux基础之基本命令cat less more sort uniq alias 命令行 bash简单描述(三)

    获取Linux当前最新的内核版本号经常关注www.kernel.org 目录管理:ls cd pwd mkdir rmdir tree 文件管理:touch stat file rm cp mv na ...

  6. [NOIP2001] 提高组 洛谷P1027 Car的旅行路线

    题目描述 又到暑假了,住在城市A的Car想和朋友一起去城市B旅游.她知道每个城市都有四个飞机场,分别位于一个 矩形的四个顶点上,同一个城市中两个机场之间有一条笔直的高速铁路,第I个城市中高速铁路了的单 ...

  7. Back弹出AlertDialog

    package com.pingyijinren.helloworld.activity; import android.content.DialogInterface; import android ...

  8. poj2553 有向图缩点,强连通分量。

    //求这样的sink点:它能达到的点,那个点必能达到他,即(G)={v∈V|任意w∈V:(v→w)推出(w→v)} //我法:tarjan缩点后,遍历点,如果该点到达的点不在同一个强连通中,该点排除, ...

  9. Max Sum Plus Plus-HDU1024(dp)

    Problem Description Now I think you have got an AC in Ignatius.L's "Max Sum" problem. To b ...

  10. Simics 破解 转

    http://www.eetop.cn/blog/html/28/1066428-type-bbs-view-myfav.html http://blog.sina.com.cn/s/blog_538 ...